struct InboundAnnounce {
message: Announce,
state: AnnounceStateMachine,
}Expand description
An announcement the peer made with ANNOUNCE.
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: AnnounceThe message as it arrived, which is what the application answers from.
state: AnnounceStateMachineHow far the announcement it makes has got.
Auto Trait Implementations§
impl Freeze for InboundAnnounce
impl RefUnwindSafe for InboundAnnounce
impl Send for InboundAnnounce
impl Sync for InboundAnnounce
impl Unpin for InboundAnnounce
impl UnsafeUnpin for InboundAnnounce
impl UnwindSafe for InboundAnnounce
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