pub struct WikiNameFull {
pub self_link: Option<Url>,
pub resource_type_link: Option<Url>,
pub http_etag: Option<String>,
pub person_link: Url,
pub url: Url,
pub wiki: String,
pub wikiname: String,
}Expand description
Representation of the wiki_name-full resource
Fields§
§self_link: Option<Url>The canonical 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.
person_link: UrlOwner
url: UrlThe URL for this wiki home page.
wiki: StringWiki host
wikiname: StringWikiname
Implementations§
Trait Implementations§
Source§impl Clone for WikiNameFull
impl Clone for WikiNameFull
Source§fn clone(&self) -> WikiNameFull
fn clone(&self) -> WikiNameFull
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 WikiNameFull
impl Debug for WikiNameFull
Source§impl<'de> Deserialize<'de> for WikiNameFull
impl<'de> Deserialize<'de> for WikiNameFull
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 WikiNameFull
impl PartialEq for WikiNameFull
Source§impl Serialize for WikiNameFull
impl Serialize for WikiNameFull
impl StructuralPartialEq for WikiNameFull
Auto Trait Implementations§
impl Freeze for WikiNameFull
impl RefUnwindSafe for WikiNameFull
impl Send for WikiNameFull
impl Sync for WikiNameFull
impl Unpin for WikiNameFull
impl UnwindSafe for WikiNameFull
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