pub struct CoachLayoutCollectionResponse {
pub warnings: Option<Box<WarningCollection>>,
pub problems: Option<Vec<Problem>>,
pub layouts: Option<Vec<CoachLayout>>,
pub _links: Option<Vec<Link>>,
}Fields§
§warnings: Option<Box<WarningCollection>>§problems: Option<Vec<Problem>>§layouts: Option<Vec<CoachLayout>>§_links: Option<Vec<Link>>Java Property Name: ‘links’
Implementations§
Trait Implementations§
Source§impl Clone for CoachLayoutCollectionResponse
impl Clone for CoachLayoutCollectionResponse
Source§fn clone(&self) -> CoachLayoutCollectionResponse
fn clone(&self) -> CoachLayoutCollectionResponse
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 Default for CoachLayoutCollectionResponse
impl Default for CoachLayoutCollectionResponse
Source§fn default() -> CoachLayoutCollectionResponse
fn default() -> CoachLayoutCollectionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CoachLayoutCollectionResponse
impl<'de> Deserialize<'de> for CoachLayoutCollectionResponse
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 CoachLayoutCollectionResponse
impl PartialEq for CoachLayoutCollectionResponse
Source§fn eq(&self, other: &CoachLayoutCollectionResponse) -> bool
fn eq(&self, other: &CoachLayoutCollectionResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CoachLayoutCollectionResponse
Auto Trait Implementations§
impl Freeze for CoachLayoutCollectionResponse
impl RefUnwindSafe for CoachLayoutCollectionResponse
impl Send for CoachLayoutCollectionResponse
impl Sync for CoachLayoutCollectionResponse
impl Unpin for CoachLayoutCollectionResponse
impl UnwindSafe for CoachLayoutCollectionResponse
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