Struct secret_toolkit_serialization::Base64Of
source · [−]pub struct Base64Of<S: Serde, T> {
pub inner: T,
/* private fields */
}
Expand description
A wrapper that automatically deserializes base64 strings to T
using
one of the Serde
types.
Use it as a field of your Handle messages (input and output), for
example in the msg
field of the Receive
interface, to remove the
boilerplate of serializing or deserializing the Binary
to the relevant
type T
.
Fields
inner: T
Trait Implementations
sourceimpl<'de, S: Serde, T: for<'des> Deserialize<'des>> Deserialize<'de> for Base64Of<S, T>
impl<'de, S: Serde, T: for<'des> Deserialize<'des>> Deserialize<'de> for Base64Of<S, T>
sourcefn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<S: Serde, T: JsonSchema> JsonSchema for Base64Of<S, T>
impl<S: Serde, T: JsonSchema> JsonSchema for Base64Of<S, T>
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the $ref
keyword. Read more
sourceimpl<S: Serde, S2: Serde, T: PartialOrd> PartialOrd<Base64Of<S2, T>> for Base64Of<S, T>
impl<S: Serde, S2: Serde, T: PartialOrd> PartialOrd<Base64Of<S2, T>> for Base64Of<S, T>
sourcefn partial_cmp(&self, other: &Base64Of<S2, T>) -> Option<Ordering>
fn partial_cmp(&self, other: &Base64Of<S2, T>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<S: Serde, T: PartialOrd> PartialOrd<T> for Base64Of<S, T>
impl<S: Serde, T: PartialOrd> PartialOrd<T> for Base64Of<S, T>
sourcefn partial_cmp(&self, other: &T) -> Option<Ordering>
fn partial_cmp(&self, other: &T) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl<S: Serde, T: Copy> Copy for Base64Of<S, T>
Auto Trait Implementations
impl<S, T> RefUnwindSafe for Base64Of<S, T> where
S: RefUnwindSafe,
T: RefUnwindSafe,
impl<S, T> Send for Base64Of<S, T> where
S: Send,
T: Send,
impl<S, T> Sync for Base64Of<S, T> where
S: Sync,
T: Sync,
impl<S, T> Unpin for Base64Of<S, T> where
S: Unpin,
T: Unpin,
impl<S, T> UnwindSafe for Base64Of<S, T> where
S: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more