pub struct TooLongCount(/* private fields */);Expand description
Represents the too long count.
Implementations§
Source§impl TooLongCount
impl TooLongCount
Sourcepub const fn new() -> TooLongCount
pub const fn new() -> TooLongCount
Creates a new TooLongCount.
Sourcepub const fn create(val: u32) -> TooLongCount
pub const fn create(val: u32) -> TooLongCount
Creates a new TooLongCount from the provided parameter.
Sourcepub fn into_inner(self) -> u32
pub fn into_inner(self) -> u32
Converts into the inner representation of TooLongCount.
Trait Implementations§
Source§impl Clone for TooLongCount
impl Clone for TooLongCount
Source§fn clone(&self) -> TooLongCount
fn clone(&self) -> TooLongCount
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 TooLongCount
impl Debug for TooLongCount
Source§impl Default for TooLongCount
impl Default for TooLongCount
Source§fn default() -> TooLongCount
fn default() -> TooLongCount
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TooLongCount
impl<'de> Deserialize<'de> for TooLongCount
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TooLongCount, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TooLongCount, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for TooLongCount
impl Display for TooLongCount
Source§impl From<&TooLongCount> for XfsMember
impl From<&TooLongCount> for XfsMember
Source§fn from(val: &TooLongCount) -> XfsMember
fn from(val: &TooLongCount) -> XfsMember
Converts to this type from the input type.
Source§impl From<&TooLongCount> for XfsValue
impl From<&TooLongCount> for XfsValue
Source§fn from(val: &TooLongCount) -> XfsValue
fn from(val: &TooLongCount) -> XfsValue
Converts to this type from the input type.
Source§impl From<&i32> for TooLongCount
impl From<&i32> for TooLongCount
Source§fn from(val: &i32) -> TooLongCount
fn from(val: &i32) -> TooLongCount
Converts to this type from the input type.
Source§impl From<&u32> for TooLongCount
impl From<&u32> for TooLongCount
Source§fn from(val: &u32) -> TooLongCount
fn from(val: &u32) -> TooLongCount
Converts to this type from the input type.
Source§impl From<TooLongCount> for XfsMember
impl From<TooLongCount> for XfsMember
Source§fn from(val: TooLongCount) -> XfsMember
fn from(val: TooLongCount) -> XfsMember
Converts to this type from the input type.
Source§impl From<TooLongCount> for XfsValue
impl From<TooLongCount> for XfsValue
Source§fn from(val: TooLongCount) -> XfsValue
fn from(val: TooLongCount) -> XfsValue
Converts to this type from the input type.
Source§impl From<i32> for TooLongCount
impl From<i32> for TooLongCount
Source§fn from(val: i32) -> TooLongCount
fn from(val: i32) -> TooLongCount
Converts to this type from the input type.
Source§impl From<u32> for TooLongCount
impl From<u32> for TooLongCount
Source§fn from(val: u32) -> TooLongCount
fn from(val: u32) -> TooLongCount
Converts to this type from the input type.
Source§impl PartialEq for TooLongCount
impl PartialEq for TooLongCount
Source§impl Serialize for TooLongCount
impl Serialize for TooLongCount
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl TryFrom<&XfsMember> for TooLongCount
impl TryFrom<&XfsMember> for TooLongCount
Source§impl TryFrom<&XfsValue> for TooLongCount
impl TryFrom<&XfsValue> for TooLongCount
Source§impl TryFrom<XfsMember> for TooLongCount
impl TryFrom<XfsMember> for TooLongCount
Source§impl TryFrom<XfsValue> for TooLongCount
impl TryFrom<XfsValue> for TooLongCount
impl Copy for TooLongCount
impl Eq for TooLongCount
impl StructuralPartialEq for TooLongCount
Auto Trait Implementations§
impl Freeze for TooLongCount
impl RefUnwindSafe for TooLongCount
impl Send for TooLongCount
impl Sync for TooLongCount
impl Unpin for TooLongCount
impl UnwindSafe for TooLongCount
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