pub struct RepositionResponseBody {
pub goals: Vec<GoalsResponse>,
}Expand description
RepositionResponseBody
JSON schema
{
"type": "object",
"properties": {
"goals": {
"type": "array",
"items": {
"$ref": "#/components/schemas/GoalsResponse"
}
}
}
}Fields§
§goals: Vec<GoalsResponse>Trait Implementations§
Source§impl Clone for RepositionResponseBody
impl Clone for RepositionResponseBody
Source§fn clone(&self) -> RepositionResponseBody
fn clone(&self) -> RepositionResponseBody
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 RepositionResponseBody
impl Debug for RepositionResponseBody
Source§impl Default for RepositionResponseBody
impl Default for RepositionResponseBody
Source§impl<'de> Deserialize<'de> for RepositionResponseBody
impl<'de> Deserialize<'de> for RepositionResponseBody
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 From<&RepositionResponseBody> for RepositionResponseBody
impl From<&RepositionResponseBody> for RepositionResponseBody
Source§fn from(value: &RepositionResponseBody) -> Self
fn from(value: &RepositionResponseBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RepositionResponseBody
impl RefUnwindSafe for RepositionResponseBody
impl Send for RepositionResponseBody
impl Sync for RepositionResponseBody
impl Unpin for RepositionResponseBody
impl UnwindSafe for RepositionResponseBody
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