pub struct VariableModifierBase64 {
pub wide: bool,
pub ascii: bool,
pub alphabet: Option<[u8; 64]>,
}Expand description
Base64 variable modifier.
Fields§
§wide: boolWide version.
ascii: boolAscii verison.
alphabet: Option<[u8; 64]>Alphabet to use to deserialize, if provided.
Trait Implementations§
Source§impl Clone for VariableModifierBase64
impl Clone for VariableModifierBase64
Source§fn clone(&self) -> VariableModifierBase64
fn clone(&self) -> VariableModifierBase64
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VariableModifierBase64
impl Debug for VariableModifierBase64
Source§impl PartialEq for VariableModifierBase64
impl PartialEq for VariableModifierBase64
impl Eq for VariableModifierBase64
impl StructuralPartialEq for VariableModifierBase64
Auto Trait Implementations§
impl Freeze for VariableModifierBase64
impl RefUnwindSafe for VariableModifierBase64
impl Send for VariableModifierBase64
impl Sync for VariableModifierBase64
impl Unpin for VariableModifierBase64
impl UnwindSafe for VariableModifierBase64
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more