pub struct GetComponentSet {
pub status: f64,
pub error: bool,
pub meta: Box<PublishedComponentSet>,
}Fields§
§status: f64The status of the request.
error: boolFor successful requests, this value is always false.
meta: Box<PublishedComponentSet>Implementations§
Source§impl GetComponentSet
impl GetComponentSet
pub fn new( status: f64, error: bool, meta: PublishedComponentSet, ) -> GetComponentSet
Trait Implementations§
Source§impl Clone for GetComponentSet
impl Clone for GetComponentSet
Source§fn clone(&self) -> GetComponentSet
fn clone(&self) -> GetComponentSet
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 GetComponentSet
impl Debug for GetComponentSet
Source§impl Default for GetComponentSet
impl Default for GetComponentSet
Source§fn default() -> GetComponentSet
fn default() -> GetComponentSet
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetComponentSet
impl<'de> Deserialize<'de> for GetComponentSet
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 PartialEq for GetComponentSet
impl PartialEq for GetComponentSet
Source§impl Serialize for GetComponentSet
impl Serialize for GetComponentSet
impl StructuralPartialEq for GetComponentSet
Auto Trait Implementations§
impl Freeze for GetComponentSet
impl RefUnwindSafe for GetComponentSet
impl Send for GetComponentSet
impl Sync for GetComponentSet
impl Unpin for GetComponentSet
impl UnwindSafe for GetComponentSet
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