pub struct ChannelBody {
pub signature: String,
pub fence_language: String,
pub fence_body: String,
}Expand description
Channel entity body (async messaging endpoint).
Fields§
§signature: StringHuman-readable channel signature line.
fence_language: StringLanguage tag for the fenced code block.
fence_body: StringFenced source excerpt for the channel definition.
Trait Implementations§
Source§impl Clone for ChannelBody
impl Clone for ChannelBody
Source§fn clone(&self) -> ChannelBody
fn clone(&self) -> ChannelBody
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ChannelBody
impl Debug for ChannelBody
Source§impl Default for ChannelBody
impl Default for ChannelBody
Source§fn default() -> ChannelBody
fn default() -> ChannelBody
Returns the “default value” for a type. Read more
impl Eq for ChannelBody
Source§impl PartialEq for ChannelBody
impl PartialEq for ChannelBody
Source§fn eq(&self, other: &ChannelBody) -> bool
fn eq(&self, other: &ChannelBody) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ChannelBody
Auto Trait Implementations§
impl Freeze for ChannelBody
impl RefUnwindSafe for ChannelBody
impl Send for ChannelBody
impl Sync for ChannelBody
impl Unpin for ChannelBody
impl UnsafeUnpin for ChannelBody
impl UnwindSafe for ChannelBody
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