pub enum StatsPercentValue {
StatsPercentValue(StatsPercentValue),
}Expand description
Variants§
StatsPercentValue(StatsPercentValue)
Trait Implementations§
Source§impl Clone for StatsPercentValue
impl Clone for StatsPercentValue
Source§fn clone(&self) -> StatsPercentValue
fn clone(&self) -> StatsPercentValue
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 StatsPercentValue
impl Debug for StatsPercentValue
Source§impl Deserializable for StatsPercentValue
impl Deserializable for StatsPercentValue
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<StatsPercentValue> for StatsPercentValue
impl From<StatsPercentValue> for StatsPercentValue
Source§fn from(x: StatsPercentValue) -> Self
fn from(x: StatsPercentValue) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StatsPercentValue
impl PartialEq for StatsPercentValue
Source§impl Serializable for StatsPercentValue
impl Serializable for StatsPercentValue
Source§impl TryFrom<StatsPercentValue> for StatsPercentValue
impl TryFrom<StatsPercentValue> for StatsPercentValue
Source§type Error = StatsPercentValue
type Error = StatsPercentValue
The type returned in the event of a conversion error.
impl StructuralPartialEq for StatsPercentValue
Auto Trait Implementations§
impl Freeze for StatsPercentValue
impl RefUnwindSafe for StatsPercentValue
impl Send for StatsPercentValue
impl Sync for StatsPercentValue
impl Unpin for StatsPercentValue
impl UnsafeUnpin for StatsPercentValue
impl UnwindSafe for StatsPercentValue
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