pub struct IrcIdFull {
pub self_link: Option<Url>,
pub web_link: Option<Url>,
pub resource_type_link: Option<Url>,
pub http_etag: Option<String>,
pub network: String,
pub nickname: String,
pub person_link: Url,
}Expand description
Representation of the irc_id-full resource
Fields§
§self_link: Option<Url>The canonical link to this resource.
web_link: Option<Url>The canonical human-addressable web link to this resource.
resource_type_link: Option<Url>The link to the WADL description of this resource.
http_etag: Option<String>The value of the HTTP ETag for this resource.
network: StringIRC network
nickname: StringNickname
person_link: UrlOwner
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for IrcIdFull
impl<'de> Deserialize<'de> for IrcIdFull
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
impl StructuralPartialEq for IrcIdFull
Auto Trait Implementations§
impl Freeze for IrcIdFull
impl RefUnwindSafe for IrcIdFull
impl Send for IrcIdFull
impl Sync for IrcIdFull
impl Unpin for IrcIdFull
impl UnwindSafe for IrcIdFull
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