pub struct AppendStepsResponse {
pub inserted: u64,
pub path: TracePathDocumentResponse,
}Expand description
AppendStepsResponse
JSON schema
{
"type": "object",
"required": [
"inserted",
"path"
],
"properties": {
"inserted": {
"description": "Number of steps newly inserted (existing `step_id`s are skipped).",
"type": "integer",
"minimum": 0.0
},
"path": {
"$ref": "#/components/schemas/TracePathDocumentResponse"
}
}
}Fields§
§inserted: u64Number of steps newly inserted (existing step_ids are skipped).
path: TracePathDocumentResponseTrait Implementations§
Source§impl Clone for AppendStepsResponse
impl Clone for AppendStepsResponse
Source§fn clone(&self) -> AppendStepsResponse
fn clone(&self) -> AppendStepsResponse
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 AppendStepsResponse
impl Debug for AppendStepsResponse
Source§impl<'de> Deserialize<'de> for AppendStepsResponse
impl<'de> Deserialize<'de> for AppendStepsResponse
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 AppendStepsResponse
impl RefUnwindSafe for AppendStepsResponse
impl Send for AppendStepsResponse
impl Sync for AppendStepsResponse
impl Unpin for AppendStepsResponse
impl UnsafeUnpin for AppendStepsResponse
impl UnwindSafe for AppendStepsResponse
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