Struct ObjectData

Source
pub struct ObjectData {
    pub header: Header,
    pub frames: Frames,
}

Fields§

§header: Header§frames: Frames

Implementations§

Source§

impl ObjectData

Source

pub fn open(path: &Path) -> Result<String, Error<'static>>

Returns the object data string, decoding it if necessary.

§Parameters
  • path: Path to the object data file to open.
Examples found in repository?
examples/simple.rs (line 7)
5fn main() -> Result<(), Error<'static>> {
6    let path = PathBuf::from_iter(&[env!("CARGO_MANIFEST_DIR"), "examples", "frozen.dat"]);
7    let contents = ObjectData::open(&path)?;
8
9    match ObjectData::try_from(contents.as_ref()) {
10        Ok(object_data) => println!("{:?}", object_data),
11        Err(e) => eprintln!("{}", e),
12    }
13
14    Ok(())
15}
More examples
Hide additional examples
examples/demo.rs (line 17)
5fn run() -> Result<(), Error<'static>> {
6    let mut args_os = env::args_os();
7
8    // Skip first argument, which tends to be the application name.
9    args_os.next();
10
11    if args_os.len() == 0 {
12        print_help();
13    }
14
15    args_os.try_for_each(|arg_os| {
16        let path = Path::new(&arg_os);
17        let contents = ObjectData::open(&path)?;
18
19        match ObjectData::try_from(contents.as_ref()) {
20            Ok(object_data) => println!("{:#?}", object_data),
21            Err(e) => eprintln!("{}", e),
22        }
23
24        Result::<(), Error>::Ok(())
25    })?;
26
27    Ok(())
28}

Trait Implementations§

Source§

impl Debug for ObjectData

Source§

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

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

impl Default for ObjectData

Source§

fn default() -> ObjectData

Returns the “default value” for a type. Read more
Source§

impl PartialEq for ObjectData

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'s> TryFrom<&'s str> for ObjectData

Source§

type Error = Error<'s>

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

fn try_from(object_data_str: &'s str) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'i> TryFrom<Pair<'i, Rule>> for ObjectData

Source§

type Error = Error<'i>

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

fn try_from(pair: Pair<'i, Rule>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl StructuralPartialEq for ObjectData

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
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.