Struct sbat::ImageSbat

source ·
pub struct ImageSbat(/* private fields */);
Expand description

Image SBAT metadata.

Typically this data comes from the .sbat section of a UEFI PE executable.

Implementations§

source§

impl ImageSbat

source

pub fn parse(input: &[u8]) -> Result<&Self, ParseError>

Parse SBAT metadata from raw CSV. This data typically comes from the .sbat section of a UEFI PE executable. Each record is parsed as an Entry.

Any data past the first null in input is ignored. A null byte is not required to be present.

source

pub fn as_csv(&self) -> &AsciiStr

Get the underlying ASCII CSV string.

source

pub fn entries(&self) -> Entries<'_>

Get an iterator over the entries.

Trait Implementations§

source§

impl Debug for ImageSbat

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Ord for ImageSbat

source§

fn cmp(&self, other: &ImageSbat) -> Ordering

This method returns an Ordering between self and other. Read more
source§

impl PartialEq<&ImageSbat> for ImageSbatOwned

Available on crate feature alloc only.
source§

fn eq(&self, other: &&ImageSbat) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<ImageSbatOwned> for &ImageSbat

Available on crate feature alloc only.
source§

fn eq(&self, other: &ImageSbatOwned) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq for ImageSbat

source§

fn eq(&self, other: &ImageSbat) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for ImageSbat

source§

fn partial_cmp(&self, other: &ImageSbat) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Eq for ImageSbat

source§

impl StructuralPartialEq for ImageSbat

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more