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