pub struct RelatedSite {
pub name: String,
pub relation: String,
pub api_site_parameter: String,
pub site_url: String,
}
Expand description
This type represents a related site in the Stack Exchange network. https://api.stackexchange.com/docs/types/related-site
Fields§
§name: String
§relation: String
§api_site_parameter: String
§site_url: String
Trait Implementations§
Source§impl Debug for RelatedSite
impl Debug for RelatedSite
Source§impl<'de> Deserialize<'de> for RelatedSite
impl<'de> Deserialize<'de> for RelatedSite
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
Auto Trait Implementations§
impl Freeze for RelatedSite
impl RefUnwindSafe for RelatedSite
impl Send for RelatedSite
impl Sync for RelatedSite
impl Unpin for RelatedSite
impl UnwindSafe for RelatedSite
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