pub struct CreateChartResponse {
pub data: CreateChartResponseData,
}Expand description
Successfully charted waypoint.
JSON schema
{
"description": "Successfully charted waypoint.",
"type": "object",
"required": [
"data"
],
"properties": {
"data": {
"type": "object",
"required": [
"agent",
"chart",
"transaction",
"waypoint"
],
"properties": {
"agent": {
"$ref": "#/components/schemas/Agent"
},
"chart": {
"$ref": "#/components/schemas/Chart"
},
"transaction": {
"$ref": "#/components/schemas/ChartTransaction"
},
"waypoint": {
"$ref": "#/components/schemas/Waypoint"
}
}
}
}
}Fields§
§data: CreateChartResponseDataTrait Implementations§
Source§impl Clone for CreateChartResponse
impl Clone for CreateChartResponse
Source§fn clone(&self) -> CreateChartResponse
fn clone(&self) -> CreateChartResponse
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 CreateChartResponse
impl Debug for CreateChartResponse
Source§impl<'de> Deserialize<'de> for CreateChartResponse
impl<'de> Deserialize<'de> for CreateChartResponse
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 CreateChartResponse
impl RefUnwindSafe for CreateChartResponse
impl Send for CreateChartResponse
impl Sync for CreateChartResponse
impl Unpin for CreateChartResponse
impl UnsafeUnpin for CreateChartResponse
impl UnwindSafe for CreateChartResponse
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