pub struct SharingServiceFull {
pub self_link: Option<Url>,
pub resource_type_link: Option<Url>,
pub http_etag: Option<String>,
pub name: String,
}Expand description
Representation of the sharing_service-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.
name: StringName
The name of the service, used to generate the url.
Implementations§
Source§impl SharingServiceFull
impl SharingServiceFull
Sourcepub fn self_(&self) -> Option<SharingService>
pub fn self_(&self) -> Option<SharingService>
The canonical link to this resource.
pub fn set_self_(&mut self, value: Option<SharingService>)
Trait Implementations§
Source§impl Clone for SharingServiceFull
impl Clone for SharingServiceFull
Source§fn clone(&self) -> SharingServiceFull
fn clone(&self) -> SharingServiceFull
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 SharingServiceFull
impl Debug for SharingServiceFull
Source§impl<'de> Deserialize<'de> for SharingServiceFull
impl<'de> Deserialize<'de> for SharingServiceFull
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 SharingServiceFull
impl PartialEq for SharingServiceFull
Source§impl Serialize for SharingServiceFull
impl Serialize for SharingServiceFull
impl StructuralPartialEq for SharingServiceFull
Auto Trait Implementations§
impl Freeze for SharingServiceFull
impl RefUnwindSafe for SharingServiceFull
impl Send for SharingServiceFull
impl Sync for SharingServiceFull
impl Unpin for SharingServiceFull
impl UnwindSafe for SharingServiceFull
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