pub struct GraphStatusParams {
pub resource: Option<String>,
pub graph_id: Option<String>,
pub run_id: Option<String>,
pub cursor: Option<u64>,
pub limit: Option<u64>,
}Expand description
Parameters for querying server or execution status.
Fields§
§resource: Option<String>Resource type: ‘server’, ‘graph’, ‘run’, ‘events’, ‘receipt’, ‘templates’. Omit for server-level summary.
graph_id: Option<String>Graph ID (required when resource=‘graph’).
run_id: Option<String>Run ID (required when resource=‘run’, ‘events’, or ‘receipt’).
cursor: Option<u64>Event cursor (for resource=‘events’, start from this sequence number).
limit: Option<u64>Maximum events to return (for resource=‘events’, default 100).
Trait Implementations§
Source§impl Debug for GraphStatusParams
impl Debug for GraphStatusParams
Source§impl<'de> Deserialize<'de> for GraphStatusParams
impl<'de> Deserialize<'de> for GraphStatusParams
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 JsonSchema for GraphStatusParams
impl JsonSchema for GraphStatusParams
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for GraphStatusParams
impl RefUnwindSafe for GraphStatusParams
impl Send for GraphStatusParams
impl Sync for GraphStatusParams
impl Unpin for GraphStatusParams
impl UnsafeUnpin for GraphStatusParams
impl UnwindSafe for GraphStatusParams
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