[][src]Struct webbundle::Bundle

pub struct Bundle { /* fields omitted */ }

Represents a WebBundle.

Methods

impl Bundle[src]

pub fn version(&self) -> &Version[src]

Gets the version.

pub fn primary_url(&self) -> &Uri[src]

Gets the primary url.

pub fn manifest(&self) -> &Option<Uri>[src]

Gets the manifest.

pub fn exchanges(&self) -> &[Exchange][src]

Gets the exchanges.

pub fn from_bytes(bytes: impl AsRef<[u8]>) -> Result<Bundle>[src]

Parses the given bytes and returns the parsed Bundle.

pub fn write_to<W: Write + Sized>(&self, write: W) -> Result<()>[src]

Encodes this bundle and write the result to the given write.

pub fn encode(&self) -> Result<Vec<u8>>[src]

Encodes this bundle.

pub fn builder() -> Builder[src]

Returns a new builder.

Trait Implementations

impl Debug for Bundle[src]

impl<'a> TryFrom<&'a [u8]> for Bundle[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl !RefUnwindSafe for Bundle

impl Send for Bundle

impl Sync for Bundle

impl Unpin for Bundle

impl !UnwindSafe for Bundle

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> Same<T> for T

type Output = T

Should always be Self

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.