pub struct DeclinedChannel {
pub channel: String,
pub reason: String,
}Expand description
One channel the connector leaves behind, and why.
Fields§
§channel: StringThe source’s own name for it: a column, a location id.
reason: StringTrait Implementations§
Source§impl Clone for DeclinedChannel
impl Clone for DeclinedChannel
Source§fn clone(&self) -> DeclinedChannel
fn clone(&self) -> DeclinedChannel
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 DeclinedChannel
impl Debug for DeclinedChannel
Source§impl<'de> Deserialize<'de> for DeclinedChannel
impl<'de> Deserialize<'de> for DeclinedChannel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DeclinedChannel
impl PartialEq for DeclinedChannel
Source§impl Serialize for DeclinedChannel
impl Serialize for DeclinedChannel
impl StructuralPartialEq for DeclinedChannel
Auto Trait Implementations§
impl Freeze for DeclinedChannel
impl RefUnwindSafe for DeclinedChannel
impl Send for DeclinedChannel
impl Sync for DeclinedChannel
impl Unpin for DeclinedChannel
impl UnsafeUnpin for DeclinedChannel
impl UnwindSafe for DeclinedChannel
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