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