pub struct AdditionalLayerInfo {
pub signature: [u8; 4],
pub key: [u8; 4],
pub data: Vec<u8>,
}Available on crate feature
utils-psd only.Fields§
§signature: [u8; 4]§key: [u8; 4]§data: Vec<u8>Trait Implementations§
Source§impl Clone for AdditionalLayerInfo
impl Clone for AdditionalLayerInfo
Source§fn clone(&self) -> AdditionalLayerInfo
fn clone(&self) -> AdditionalLayerInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AdditionalLayerInfo
impl Debug for AdditionalLayerInfo
Source§impl StructPack for AdditionalLayerInfo
impl StructPack for AdditionalLayerInfo
Auto Trait Implementations§
impl Freeze for AdditionalLayerInfo
impl RefUnwindSafe for AdditionalLayerInfo
impl Send for AdditionalLayerInfo
impl Sync for AdditionalLayerInfo
impl Unpin for AdditionalLayerInfo
impl UnwindSafe for AdditionalLayerInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more