[][src]Struct grammers_tl_types::Blob

pub struct Blob(pub Vec<u8>);

This struct represents an unparsed blob, which should not be deserialized as a bytes string. Used by functions returning generic objects which pass the underlying result without any modification or interpretation.

Trait Implementations

impl Clone for Blob[src]

impl Debug for Blob[src]

impl Deserializable for Blob[src]

fn deserialize(buf: &'a mut Cursor<'b>) -> Result<Self, DeserializeError>[src]

Deserializes a blob by doing no parsing or interpretation.

impl From<Vec<u8>> for Blob[src]

impl PartialEq<Blob> for Blob[src]

impl Serializable for Blob[src]

fn serialize(&self, buf: &'a mut Vec<u8>)[src]

Serializes a blob by doing no parsing or interpretation.

impl StructuralPartialEq for Blob[src]

Auto Trait Implementations

impl RefUnwindSafe for Blob

impl Send for Blob

impl Sync for Blob

impl Unpin for Blob

impl UnwindSafe for Blob

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.