pub struct OptionalBytes(pub Option<String>);Expand description
Optional bytes size, stored as a string like “10GB”, “1MB”
Tuple Fields§
§0: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for OptionalBytes
impl Clone for OptionalBytes
Source§fn clone(&self) -> OptionalBytes
fn clone(&self) -> OptionalBytes
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 OptionalBytes
impl Debug for OptionalBytes
Source§impl Default for OptionalBytes
impl Default for OptionalBytes
Source§fn default() -> OptionalBytes
fn default() -> OptionalBytes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OptionalBytes
impl<'de> Deserialize<'de> for OptionalBytes
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
Auto Trait Implementations§
impl Freeze for OptionalBytes
impl RefUnwindSafe for OptionalBytes
impl Send for OptionalBytes
impl Sync for OptionalBytes
impl Unpin for OptionalBytes
impl UnwindSafe for OptionalBytes
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