Struct sep2_common::packages::response::ResponseSet
source · pub struct ResponseSet {
pub response_list_link: Option<ResponseListLink>,
pub mrid: MRIDType,
pub description: Option<String32>,
pub version: Option<VersionType>,
pub href: Option<String>,
}
Available on crate feature
response
only.Fields§
§response_list_link: Option<ResponseListLink>
§mrid: MRIDType
The global identifier of the object.
description: Option<String32>
The description is a human readable text describing or naming the object.
version: Option<VersionType>
Contains the version number of the object. See the type definition for details.
href: Option<String>
A reference to the resource address (URI). Required in a response to a GET, ignored otherwise.
Trait Implementations§
source§impl Clone for ResponseSet
impl Clone for ResponseSet
source§fn clone(&self) -> ResponseSet
fn clone(&self) -> ResponseSet
Returns a copy 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 ResponseSet
impl Debug for ResponseSet
source§impl Default for ResponseSet
impl Default for ResponseSet
source§fn default() -> ResponseSet
fn default() -> ResponseSet
Returns the “default value” for a type. Read more
source§impl Ord for ResponseSet
impl Ord for ResponseSet
source§impl PartialEq<ResponseSet> for ResponseSet
impl PartialEq<ResponseSet> for ResponseSet
source§fn eq(&self, other: &ResponseSet) -> bool
fn eq(&self, other: &ResponseSet) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<ResponseSet> for ResponseSet
impl PartialOrd<ResponseSet> for ResponseSet
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl SEIdentifiedObject for ResponseSet
impl SEIdentifiedObject for ResponseSet
source§impl SEResource for ResponseSet
impl SEResource for ResponseSet
source§impl YaDeserialize for ResponseSet
impl YaDeserialize for ResponseSet
source§impl YaSerialize for ResponseSet
impl YaSerialize for ResponseSet
fn name() -> &'static strwhere Self: Sized,
fn serialize<W: Write>(&self, writer: &mut Serializer<W>) -> Result<(), String>where Self: Sized,
fn serialize_attributes( &self, source_attributes: Vec<OwnedAttribute>, source_namespace: Namespace ) -> Result<(Vec<OwnedAttribute>, Namespace), String>where Self: Sized,
impl Eq for ResponseSet
impl StructuralEq for ResponseSet
impl StructuralPartialEq for ResponseSet
Auto Trait Implementations§
impl RefUnwindSafe for ResponseSet
impl Send for ResponseSet
impl Sync for ResponseSet
impl Unpin for ResponseSet
impl UnwindSafe for ResponseSet
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