pub enum InfoElement {
BadAttribute(Arc<str>),
BadElement(Arc<str>),
BadNamespace(Arc<str>),
SessionId(Option<SessionId>),
OkElement(Arc<str>),
ErrElement(Arc<str>),
NoopElement(Arc<str>),
}Available on crate features
ssh or tls only.Variants§
BadAttribute(Arc<str>)
BadElement(Arc<str>)
BadNamespace(Arc<str>)
SessionId(Option<SessionId>)
OkElement(Arc<str>)
ErrElement(Arc<str>)
NoopElement(Arc<str>)
Trait Implementations§
Source§impl Clone for InfoElement
impl Clone for InfoElement
Source§fn clone(&self) -> InfoElement
fn clone(&self) -> InfoElement
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 InfoElement
impl Debug for InfoElement
Source§impl PartialEq for InfoElement
impl PartialEq for InfoElement
impl Eq for InfoElement
impl StructuralPartialEq for InfoElement
Auto Trait Implementations§
impl Freeze for InfoElement
impl RefUnwindSafe for InfoElement
impl Send for InfoElement
impl Sync for InfoElement
impl Unpin for InfoElement
impl UnwindSafe for InfoElement
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