pub enum ChannelAdminLogEvent {
ChannelAdminLogEvent(ChannelAdminLogEvent),
}Expand description
Variants§
ChannelAdminLogEvent(ChannelAdminLogEvent)
Trait Implementations§
Source§impl Clone for ChannelAdminLogEvent
impl Clone for ChannelAdminLogEvent
Source§fn clone(&self) -> ChannelAdminLogEvent
fn clone(&self) -> ChannelAdminLogEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ChannelAdminLogEvent
impl Debug for ChannelAdminLogEvent
Source§impl Deserializable for ChannelAdminLogEvent
impl Deserializable for ChannelAdminLogEvent
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<ChannelAdminLogEvent> for ChannelAdminLogEvent
impl From<ChannelAdminLogEvent> for ChannelAdminLogEvent
Source§fn from(x: ChannelAdminLogEvent) -> Self
fn from(x: ChannelAdminLogEvent) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ChannelAdminLogEvent
impl PartialEq for ChannelAdminLogEvent
Source§impl Serializable for ChannelAdminLogEvent
impl Serializable for ChannelAdminLogEvent
Source§impl TryFrom<ChannelAdminLogEvent> for ChannelAdminLogEvent
impl TryFrom<ChannelAdminLogEvent> for ChannelAdminLogEvent
Source§type Error = ChannelAdminLogEvent
type Error = ChannelAdminLogEvent
The type returned in the event of a conversion error.
impl StructuralPartialEq for ChannelAdminLogEvent
Auto Trait Implementations§
impl Freeze for ChannelAdminLogEvent
impl RefUnwindSafe for ChannelAdminLogEvent
impl Send for ChannelAdminLogEvent
impl Sync for ChannelAdminLogEvent
impl Unpin for ChannelAdminLogEvent
impl UnsafeUnpin for ChannelAdminLogEvent
impl UnwindSafe for ChannelAdminLogEvent
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