pub struct EventChannelEntry {
pub id: String,
pub namespace: String,
pub channel: String,
pub direction: String,
pub protocol: String,
pub message_schema: String,
pub description: String,
pub handler: String,
pub spec_file: String,
}Expand description
A row in the event_channels table.
Fields§
§id: String§namespace: String§channel: String§direction: String§protocol: String§message_schema: String§description: String§handler: String§spec_file: StringTrait Implementations§
Source§impl Clone for EventChannelEntry
impl Clone for EventChannelEntry
Source§fn clone(&self) -> EventChannelEntry
fn clone(&self) -> EventChannelEntry
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 moreAuto Trait Implementations§
impl Freeze for EventChannelEntry
impl RefUnwindSafe for EventChannelEntry
impl Send for EventChannelEntry
impl Sync for EventChannelEntry
impl Unpin for EventChannelEntry
impl UnsafeUnpin for EventChannelEntry
impl UnwindSafe for EventChannelEntry
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