pub struct SpecificationFull {
pub self_link: Option<Url>,
pub web_link: Option<Url>,
pub resource_type_link: Option<Url>,
pub http_etag: Option<String>,
pub information_type: InformationType,
}Expand description
Representation of the specification-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.
information_type: InformationTypeInformation Type
The type of information contained in this specification.
Implementations§
Source§impl SpecificationFull
impl SpecificationFull
Sourcepub fn self_(&self) -> Option<Specification>
pub fn self_(&self) -> Option<Specification>
The canonical link to this resource.
pub fn set_self_(&mut self, value: Option<Specification>)
Trait Implementations§
Source§impl Clone for SpecificationFull
impl Clone for SpecificationFull
Source§fn clone(&self) -> SpecificationFull
fn clone(&self) -> SpecificationFull
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 SpecificationFull
impl Debug for SpecificationFull
Source§impl<'de> Deserialize<'de> for SpecificationFull
impl<'de> Deserialize<'de> for SpecificationFull
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 SpecificationFull
impl PartialEq for SpecificationFull
Source§impl Serialize for SpecificationFull
impl Serialize for SpecificationFull
impl StructuralPartialEq for SpecificationFull
Auto Trait Implementations§
impl Freeze for SpecificationFull
impl RefUnwindSafe for SpecificationFull
impl Send for SpecificationFull
impl Sync for SpecificationFull
impl Unpin for SpecificationFull
impl UnwindSafe for SpecificationFull
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