pub struct RelayProfile {
pub display_name: String,
pub full_name: String,
pub short_descr: Option<String>,
pub image: Option<String>,
pub undocumented: JsonObject,
}Fields§
§display_name: String§full_name: String§short_descr: Option<String>§image: Option<String>§undocumented: JsonObjectTrait Implementations§
Source§impl Clone for RelayProfile
impl Clone for RelayProfile
Source§fn clone(&self) -> RelayProfile
fn clone(&self) -> RelayProfile
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 RelayProfile
impl Debug for RelayProfile
Source§impl<'de> Deserialize<'de> for RelayProfile
impl<'de> Deserialize<'de> for RelayProfile
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 RelayProfile
impl PartialEq for RelayProfile
Source§fn eq(&self, other: &RelayProfile) -> bool
fn eq(&self, other: &RelayProfile) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RelayProfile
impl Serialize for RelayProfile
impl StructuralPartialEq for RelayProfile
Auto Trait Implementations§
impl Freeze for RelayProfile
impl RefUnwindSafe for RelayProfile
impl Send for RelayProfile
impl Sync for RelayProfile
impl Unpin for RelayProfile
impl UnsafeUnpin for RelayProfile
impl UnwindSafe for RelayProfile
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