pub struct BlobDescription {
pub size: u64,
pub offset: u64,
}Expand description
Wraps blob descriptors returned by AAHeaderGetFieldBlob.
Fields§
§size: u64Wraps the size field of BlobDescription.
offset: u64Wraps the offset field of BlobDescription.
Trait Implementations§
Source§impl Clone for BlobDescription
impl Clone for BlobDescription
Source§fn clone(&self) -> BlobDescription
fn clone(&self) -> BlobDescription
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BlobDescription
Source§impl Debug for BlobDescription
impl Debug for BlobDescription
impl Eq for BlobDescription
Source§impl Hash for BlobDescription
impl Hash for BlobDescription
Source§impl PartialEq for BlobDescription
impl PartialEq for BlobDescription
Source§fn eq(&self, other: &BlobDescription) -> bool
fn eq(&self, other: &BlobDescription) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BlobDescription
Auto Trait Implementations§
impl Freeze for BlobDescription
impl RefUnwindSafe for BlobDescription
impl Send for BlobDescription
impl Sync for BlobDescription
impl Unpin for BlobDescription
impl UnsafeUnpin for BlobDescription
impl UnwindSafe for BlobDescription
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