pub enum ServerDescription {
Short(String),
Long(ServerDescriptionLong),
}Variants§
Short(String)
Long(ServerDescriptionLong)
Trait Implementations§
Source§impl Clone for ServerDescription
impl Clone for ServerDescription
Source§fn clone(&self) -> ServerDescription
fn clone(&self) -> ServerDescription
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 ServerDescription
impl Debug for ServerDescription
Source§impl<'de> Deserialize<'de> for ServerDescription
impl<'de> Deserialize<'de> for ServerDescription
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 ServerDescription
impl PartialEq for ServerDescription
Source§impl Serialize for ServerDescription
impl Serialize for ServerDescription
impl Eq for ServerDescription
impl StructuralPartialEq for ServerDescription
Auto Trait Implementations§
impl Freeze for ServerDescription
impl RefUnwindSafe for ServerDescription
impl Send for ServerDescription
impl Sync for ServerDescription
impl Unpin for ServerDescription
impl UnwindSafe for ServerDescription
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