pub struct RatioSerializer<T, ST>where
    T: Integer + Clone,
    ST: Serializer<T>,{
    pub(crate) data_serializer: ST,
    pub(crate) phantom_data: PhantomData<T>,
}
Expand description

Serializer for Ratio

Fields§

§data_serializer: ST§phantom_data: PhantomData<T>

Implementations§

source§

impl<T, ST> RatioSerializer<T, ST>where T: Integer + Clone, ST: Serializer<T>,

source

pub fn new(data_serializer: ST) -> Self

Trait Implementations§

source§

impl<T, ST> Clone for RatioSerializer<T, ST>where T: Integer + Clone + Clone, ST: Serializer<T> + Clone,

source§

fn clone(&self) -> RatioSerializer<T, ST>

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<T, ST> Debug for RatioSerializer<T, ST>where T: Integer + Clone + Debug, ST: Serializer<T> + Debug,

source§

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

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

impl<T, ST> Default for RatioSerializer<T, ST>where T: Integer + Clone + Default, ST: Serializer<T> + Default,

source§

fn default() -> RatioSerializer<T, ST>

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

impl<T, ST> Serializer<Ratio<T>> for RatioSerializer<T, ST>where T: Integer + Clone, ST: Serializer<T>,

source§

fn serialize( &self, value: &Ratio<T>, buffer: &mut Vec<u8> ) -> Result<(), SerializeError>

Serialize a value T into a buffer of u8. Read more

Auto Trait Implementations§

§

impl<T, ST> RefUnwindSafe for RatioSerializer<T, ST>where ST: RefUnwindSafe, T: RefUnwindSafe,

§

impl<T, ST> Send for RatioSerializer<T, ST>where ST: Send, T: Send,

§

impl<T, ST> Sync for RatioSerializer<T, ST>where ST: Sync, T: Sync,

§

impl<T, ST> Unpin for RatioSerializer<T, ST>where ST: Unpin, T: Unpin,

§

impl<T, ST> UnwindSafe for RatioSerializer<T, ST>where ST: UnwindSafe, T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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 Twhere 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.