Struct ooxml::packaging::part::OpenXmlPart[][src]

pub struct OpenXmlPart { /* fields omitted */ }

Implementations

impl OpenXmlPart[src]

pub fn from_reader<S: Into<PathBuf>, R: Read>(
    uri: S,
    reader: R
) -> Result<Self, OoxmlError>
[src]

pub fn new_with_content_type<S: Into<PathBuf>>(
    uri: S,
    content_type: impl Into<ContentType>
) -> Self
[src]

pub fn new<S: Into<PathBuf>, C: Into<ContentType>, R: Read>(
    uri: S,
    _content_type: C,
    reader: R
) -> Result<Self, OoxmlError>
[src]

pub fn as_part_bytes(&self) -> &[u8][src]

pub fn content_type(&self) -> &Option<ContentType>[src]

Trait Implementations

impl Clone for OpenXmlPart[src]

impl Debug for OpenXmlPart[src]

impl Default for OpenXmlPart[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.