pub struct SnapshotEndpoint;Trait Implementations§
Source§impl Clone for SnapshotEndpoint
impl Clone for SnapshotEndpoint
Source§fn clone(&self) -> SnapshotEndpoint
fn clone(&self) -> SnapshotEndpoint
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 moreimpl Copy for SnapshotEndpoint
Source§impl Debug for SnapshotEndpoint
impl Debug for SnapshotEndpoint
Source§impl EndpointDescriptor for SnapshotEndpoint
impl EndpointDescriptor for SnapshotEndpoint
Source§const NAME: &'static str = "supervisor::telemetry::SnapshotEndpoint"
const NAME: &'static str = "supervisor::telemetry::SnapshotEndpoint"
Family-qualified endpoint identity.
Source§const FAMILY: &'static str = "supervisor"
const FAMILY: &'static str = "supervisor"
Endpoint tree identity, such as
"robot" or "supervisor".Source§const CONTRACT: &'static str = "telemetry::SnapshotEndpoint"
const CONTRACT: &'static str = "telemetry::SnapshotEndpoint"
Stable endpoint path within its tree.
Source§const TOPIC: &'static str = "supervisor/telemetry/snapshot"
const TOPIC: &'static str = "supervisor/telemetry/snapshot"
Family-rooted concrete wire key template.
Source§const KIND: EndpointKind = ::phoxal_bus::EndpointKind::Query
const KIND: EndpointKind = ::phoxal_bus::EndpointKind::Query
Fixed semantic endpoint kind.
Source§type Payload = SnapshotRequest
type Payload = SnapshotRequest
The plain serde payload carried by this endpoint.
Auto Trait Implementations§
impl Freeze for SnapshotEndpoint
impl RefUnwindSafe for SnapshotEndpoint
impl Send for SnapshotEndpoint
impl Sync for SnapshotEndpoint
impl Unpin for SnapshotEndpoint
impl UnsafeUnpin for SnapshotEndpoint
impl UnwindSafe for SnapshotEndpoint
Blanket Implementations§
Source§impl<Source> AccessAs for Source
impl<Source> AccessAs for Source
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> Endpoint for Twhere
T: EndpointDescriptor,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more