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