pub struct DomainSessionResponseWrapper {
pub errors: Vec<MsaspecError>,
pub meta: Box<MsaspecMetaInfo>,
pub resources: Vec<DomainSession>,
}Fields§
§errors: Vec<MsaspecError>§meta: Box<MsaspecMetaInfo>§resources: Vec<DomainSession>Implementations§
Source§impl DomainSessionResponseWrapper
impl DomainSessionResponseWrapper
pub fn new( errors: Vec<MsaspecError>, meta: MsaspecMetaInfo, resources: Vec<DomainSession>, ) -> DomainSessionResponseWrapper
Trait Implementations§
Source§impl Clone for DomainSessionResponseWrapper
impl Clone for DomainSessionResponseWrapper
Source§fn clone(&self) -> DomainSessionResponseWrapper
fn clone(&self) -> DomainSessionResponseWrapper
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 DomainSessionResponseWrapper
impl Debug for DomainSessionResponseWrapper
Source§impl Default for DomainSessionResponseWrapper
impl Default for DomainSessionResponseWrapper
Source§fn default() -> DomainSessionResponseWrapper
fn default() -> DomainSessionResponseWrapper
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DomainSessionResponseWrapper
impl<'de> Deserialize<'de> for DomainSessionResponseWrapper
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 DomainSessionResponseWrapper
impl PartialEq for DomainSessionResponseWrapper
Source§fn eq(&self, other: &DomainSessionResponseWrapper) -> bool
fn eq(&self, other: &DomainSessionResponseWrapper) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DomainSessionResponseWrapper
Auto Trait Implementations§
impl Freeze for DomainSessionResponseWrapper
impl RefUnwindSafe for DomainSessionResponseWrapper
impl Send for DomainSessionResponseWrapper
impl Sync for DomainSessionResponseWrapper
impl Unpin for DomainSessionResponseWrapper
impl UnwindSafe for DomainSessionResponseWrapper
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