Enum thrift_codec::data::Data

source ·
pub enum Data {
    Bool(bool),
    I8(i8),
    I16(i16),
    I32(i32),
    I64(i64),
    Double(f64),
    Binary(Vec<u8>),
    Struct(Struct),
    Map(Map),
    Set(Set),
    List(List),
    Uuid(Uuid),
}
Expand description

Data.

Variants§

§

Bool(bool)

§

I8(i8)

§

I16(i16)

§

I32(i32)

§

I64(i64)

§

Double(f64)

§

Binary(Vec<u8>)

§

Struct(Struct)

§

Map(Map)

§

Set(Set)

§

List(List)

§

Uuid(Uuid)

Implementations§

source§

impl Data

source

pub fn kind(&self) -> DataKind

Returns the kind of this data.

source

pub fn as_ref(&self) -> DataRef<'_>

Returns the reference to this data.

Trait Implementations§

source§

impl BinaryEncode for Data

source§

fn binary_encode<W: Write>(&self, writer: &mut W) -> Result<()>

Encodes an object.
source§

impl Clone for Data

source§

fn clone(&self) -> Data

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl CompactEncode for Data

source§

fn compact_encode<W: Write>(&self, writer: &mut W) -> Result<()>

Encodes an object.
source§

impl Debug for Data

source§

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

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

impl<'a> From<&'a [u8]> for Data

source§

fn from(f: &'a [u8]) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a str> for Data

source§

fn from(f: &'a str) -> Self

Converts to this type from the input type.
source§

impl From<List> for Data

source§

fn from(f: List) -> Self

Converts to this type from the input type.
source§

impl From<Map> for Data

source§

fn from(f: Map) -> Self

Converts to this type from the input type.
source§

impl From<Set> for Data

source§

fn from(f: Set) -> Self

Converts to this type from the input type.
source§

impl From<String> for Data

source§

fn from(f: String) -> Self

Converts to this type from the input type.
source§

impl From<Struct> for Data

source§

fn from(f: Struct) -> Self

Converts to this type from the input type.
source§

impl From<Uuid> for Data

source§

fn from(f: Uuid) -> Self

Converts to this type from the input type.
source§

impl From<Vec<u8>> for Data

source§

fn from(f: Vec<u8>) -> Self

Converts to this type from the input type.
source§

impl From<bool> for Data

source§

fn from(f: bool) -> Self

Converts to this type from the input type.
source§

impl From<f64> for Data

source§

fn from(f: f64) -> Self

Converts to this type from the input type.
source§

impl From<i16> for Data

source§

fn from(f: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for Data

source§

fn from(f: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Data

source§

fn from(f: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for Data

source§

fn from(f: i8) -> Self

Converts to this type from the input type.
source§

impl PartialEq for Data

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for Data

Auto Trait Implementations§

§

impl RefUnwindSafe for Data

§

impl Send for Data

§

impl Sync for Data

§

impl Unpin for Data

§

impl UnwindSafe for Data

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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

§

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.