pub struct RaidResponseSchema {
pub data: Box<RaidSchema>,
}Fields§
§data: Box<RaidSchema>Raid details.
Implementations§
Source§impl RaidResponseSchema
impl RaidResponseSchema
pub fn new(data: RaidSchema) -> RaidResponseSchema
Trait Implementations§
Source§impl Clone for RaidResponseSchema
impl Clone for RaidResponseSchema
Source§fn clone(&self) -> RaidResponseSchema
fn clone(&self) -> RaidResponseSchema
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RaidResponseSchema
impl Debug for RaidResponseSchema
Source§impl Default for RaidResponseSchema
impl Default for RaidResponseSchema
Source§fn default() -> RaidResponseSchema
fn default() -> RaidResponseSchema
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RaidResponseSchema
impl<'de> Deserialize<'de> for RaidResponseSchema
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl IntoData for RaidResponseSchema
impl IntoData for RaidResponseSchema
Source§impl PartialEq for RaidResponseSchema
impl PartialEq for RaidResponseSchema
Source§fn eq(&self, other: &RaidResponseSchema) -> bool
fn eq(&self, other: &RaidResponseSchema) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RaidResponseSchema
impl Serialize for RaidResponseSchema
impl StructuralPartialEq for RaidResponseSchema
Auto Trait Implementations§
impl Freeze for RaidResponseSchema
impl RefUnwindSafe for RaidResponseSchema
impl Send for RaidResponseSchema
impl Sync for RaidResponseSchema
impl Unpin for RaidResponseSchema
impl UnsafeUnpin for RaidResponseSchema
impl UnwindSafe for RaidResponseSchema
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