pub struct StatsRequest;Expand description
Endpoint marker for the network.slices.slice.stats query.
Path: /xrpc/network.slices.slice.stats. The request payload type is Stats<S>; send that request with jacquard::Client or use this marker through lower-level XrpcEndpoint APIs.
Trait Implementations§
Source§impl XrpcEndpoint for StatsRequest
impl XrpcEndpoint for StatsRequest
Source§const PATH: &'static str = "/xrpc/network.slices.slice.stats"
const PATH: &'static str = "/xrpc/network.slices.slice.stats"
Fully-qualified path (‘/xrpc/[nsid]’) where this endpoint should live on the server
Source§const METHOD: XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query
const METHOD: XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query
XRPC method (query/GET or procedure/POST)
Source§type Response = StatsResponse
type Response = StatsResponse
XRPC Response data type
Auto Trait Implementations§
impl Freeze for StatsRequest
impl RefUnwindSafe for StatsRequest
impl Send for StatsRequest
impl Sync for StatsRequest
impl Unpin for StatsRequest
impl UnsafeUnpin for StatsRequest
impl UnwindSafe for StatsRequest
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