pub struct TransportSupport {
pub crate_name: &'static str,
pub boundary: &'static str,
pub status: SupportStatus,
pub notes: &'static str,
}Expand description
Transport adapter support entry.
Fields§
§crate_name: &'static strPublished crate name.
boundary: &'static strBoundary handled by the adapter.
status: SupportStatusCurrent support status.
notes: &'static strShort operational note.
Trait Implementations§
Source§impl Clone for TransportSupport
impl Clone for TransportSupport
Source§fn clone(&self) -> TransportSupport
fn clone(&self) -> TransportSupport
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 TransportSupport
impl Debug for TransportSupport
Source§impl PartialEq for TransportSupport
impl PartialEq for TransportSupport
impl Copy for TransportSupport
impl Eq for TransportSupport
impl StructuralPartialEq for TransportSupport
Auto Trait Implementations§
impl Freeze for TransportSupport
impl RefUnwindSafe for TransportSupport
impl Send for TransportSupport
impl Sync for TransportSupport
impl Unpin for TransportSupport
impl UnsafeUnpin for TransportSupport
impl UnwindSafe for TransportSupport
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