struct InboundPublishNamespace {
message: PublishNamespace,
state: PublishNamespaceStateMachine,
}Expand description
An announcement the peer made with PUBLISH_NAMESPACE.
Kept apart from the announcements this endpoint made because the two are answered by opposite ends: this one is waiting for an answer from here, and the other for one from the peer.
Fields§
§message: PublishNamespaceThe message as it arrived, which is what the application answers from.
state: PublishNamespaceStateMachineHow far the announcement it makes has got.
Auto Trait Implementations§
impl Freeze for InboundPublishNamespace
impl RefUnwindSafe for InboundPublishNamespace
impl Send for InboundPublishNamespace
impl Sync for InboundPublishNamespace
impl Unpin for InboundPublishNamespace
impl UnsafeUnpin for InboundPublishNamespace
impl UnwindSafe for InboundPublishNamespace
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