pub struct PlansResponse {
pub plans: Vec<PlanResponse>,
}Expand description
PlansResponse
JSON schema
{
"type": "object",
"required": [
"plans"
],
"properties": {
"plans": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PlanResponse"
}
}
}
}Fields§
§plans: Vec<PlanResponse>Trait Implementations§
Source§impl Clone for PlansResponse
impl Clone for PlansResponse
Source§fn clone(&self) -> PlansResponse
fn clone(&self) -> PlansResponse
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 PlansResponse
impl Debug for PlansResponse
Source§impl<'de> Deserialize<'de> for PlansResponse
impl<'de> Deserialize<'de> for PlansResponse
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
Auto Trait Implementations§
impl Freeze for PlansResponse
impl RefUnwindSafe for PlansResponse
impl Send for PlansResponse
impl Sync for PlansResponse
impl Unpin for PlansResponse
impl UnsafeUnpin for PlansResponse
impl UnwindSafe for PlansResponse
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