pub struct Base64BigUint { /* private fields */ }Expand description
BASE64 encoded big integer
Implementations§
Source§impl Base64BigUint
impl Base64BigUint
pub fn to_base64url(&self) -> String
pub fn from_base64url(value: &str) -> Result<Self, Error>
Trait Implementations§
Source§impl Clone for Base64BigUint
impl Clone for Base64BigUint
Source§fn clone(&self) -> Base64BigUint
fn clone(&self) -> Base64BigUint
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 Base64BigUint
impl Debug for Base64BigUint
Source§impl<'de> Deserialize<'de> for Base64BigUint
impl<'de> Deserialize<'de> for Base64BigUint
Source§fn 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
Source§impl Into<Base64BigUint> for BigUint
impl Into<Base64BigUint> for BigUint
Source§fn into(self) -> Base64BigUint
fn into(self) -> Base64BigUint
Converts this type into the (usually inferred) input type.
Source§impl Into<BigUint> for Base64BigUint
impl Into<BigUint> for Base64BigUint
Source§impl PartialEq for Base64BigUint
impl PartialEq for Base64BigUint
Source§impl Serialize for Base64BigUint
impl Serialize for Base64BigUint
impl StructuralPartialEq for Base64BigUint
Auto Trait Implementations§
impl Freeze for Base64BigUint
impl RefUnwindSafe for Base64BigUint
impl Send for Base64BigUint
impl Sync for Base64BigUint
impl Unpin for Base64BigUint
impl UnwindSafe for Base64BigUint
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