pub struct StatsGraphError {
pub error: String,
}Expand description
Fields§
§error: StringTrait Implementations§
Source§impl Clone for StatsGraphError
impl Clone for StatsGraphError
Source§fn clone(&self) -> StatsGraphError
fn clone(&self) -> StatsGraphError
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 StatsGraphError
impl Debug for StatsGraphError
Source§impl Deserializable for StatsGraphError
impl Deserializable for StatsGraphError
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<StatsGraphError> for StatsGraph
impl From<StatsGraphError> for StatsGraph
Source§fn from(x: StatsGraphError) -> Self
fn from(x: StatsGraphError) -> Self
Converts to this type from the input type.
Source§impl Identifiable for StatsGraphError
impl Identifiable for StatsGraphError
Source§const CONSTRUCTOR_ID: u32 = 0xbedc9822
const CONSTRUCTOR_ID: u32 = 0xbedc9822
The constructor ID as specified in the TL schema.
Source§impl PartialEq for StatsGraphError
impl PartialEq for StatsGraphError
Source§impl Serializable for StatsGraphError
impl Serializable for StatsGraphError
Source§impl TryFrom<StatsGraph> for StatsGraphError
impl TryFrom<StatsGraph> for StatsGraphError
Source§type Error = StatsGraph
type Error = StatsGraph
The type returned in the event of a conversion error.
impl StructuralPartialEq for StatsGraphError
Auto Trait Implementations§
impl Freeze for StatsGraphError
impl RefUnwindSafe for StatsGraphError
impl Send for StatsGraphError
impl Sync for StatsGraphError
impl Unpin for StatsGraphError
impl UnsafeUnpin for StatsGraphError
impl UnwindSafe for StatsGraphError
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