freedesktop_entry_parser

Struct Entry

Source
pub struct Entry(/* private fields */);
Expand description

Parse a Freedesktop entry.

Implementations§

Source§

impl Entry

Source

pub fn parse(input: impl Into<Vec<u8>>) -> Result<Self>

Parse an entry from byte buffer.

Source

pub fn parse_file(path: impl AsRef<Path>) -> Result<Self>

Parse entry from file.

If there is a parse error it’ll be return an crate::Error wrapped io::Error with the ErrorKind::Other.

Source

pub fn has_section(&self, name: impl AsRef<str>) -> bool

Check if the entry has a section with a name.

Source

pub fn section<T: AsRef<str>>(&self, name: T) -> AttrSelector<'_, T>

Get section with name.

Source

pub fn sections(&self) -> SectionIter<'_>

Iterator over sections.

Auto Trait Implementations§

§

impl Freeze for Entry

§

impl RefUnwindSafe for Entry

§

impl !Send for Entry

§

impl !Sync for Entry

§

impl Unpin for Entry

§

impl UnwindSafe for Entry

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
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.