pub struct PatchRouteResponse {
pub headers: Option<Route>,
}Expand description
PatchRouteResponse
JSON schema
{
"type": "object",
"properties": {
"headers": {
"$ref": "#/components/schemas/route"
}
}
}Fields§
§headers: Option<Route>Trait Implementations§
Source§impl Clone for PatchRouteResponse
impl Clone for PatchRouteResponse
Source§fn clone(&self) -> PatchRouteResponse
fn clone(&self) -> PatchRouteResponse
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 PatchRouteResponse
impl Debug for PatchRouteResponse
Source§impl Default for PatchRouteResponse
impl Default for PatchRouteResponse
Source§impl<'de> Deserialize<'de> for PatchRouteResponse
impl<'de> Deserialize<'de> for PatchRouteResponse
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 PatchRouteResponse
impl RefUnwindSafe for PatchRouteResponse
impl Send for PatchRouteResponse
impl Sync for PatchRouteResponse
impl Unpin for PatchRouteResponse
impl UnsafeUnpin for PatchRouteResponse
impl UnwindSafe for PatchRouteResponse
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