pub enum MessageTopicOperation {
Add,
}Expand description
Operations that can be performed on message topics.
Variants§
Add
Add a new message topic.
Implementations§
Source§impl MessageTopicOperation
impl MessageTopicOperation
Sourcepub const fn max_serialized_len() -> usize
pub const fn max_serialized_len() -> usize
Maximum serialized length of a message topic operation.
Trait Implementations§
Source§impl Debug for MessageTopicOperation
impl Debug for MessageTopicOperation
Source§impl FromBytes for MessageTopicOperation
impl FromBytes for MessageTopicOperation
Source§impl PartialEq for MessageTopicOperation
impl PartialEq for MessageTopicOperation
Source§impl ToBytes for MessageTopicOperation
impl ToBytes for MessageTopicOperation
Source§fn serialized_length(&self) -> usize
fn serialized_length(&self) -> usize
Returns the length of the
Vec<u8> which would be returned from a successful call to
to_bytes() or into_bytes(). The data is not actually serialized, so this call is
relatively cheap.impl StructuralPartialEq for MessageTopicOperation
Auto Trait Implementations§
impl Freeze for MessageTopicOperation
impl RefUnwindSafe for MessageTopicOperation
impl Send for MessageTopicOperation
impl Sync for MessageTopicOperation
impl Unpin for MessageTopicOperation
impl UnwindSafe for MessageTopicOperation
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
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