pub struct ZoneGroup {
pub coordinator: String,
pub id: String,
pub members: Vec<ZoneGroupMember>,
}Fields§
§coordinator: String§id: String§members: Vec<ZoneGroupMember>Trait Implementations§
Source§impl<'xml> FromXml<'xml> for ZoneGroup
impl<'xml> FromXml<'xml> for ZoneGroup
const KIND: Kind = ::instant_xml::Kind::Element
type Accumulator = Option<ZoneGroup>
fn matches(id: Id<'_>, field: Option<Id<'_>>) -> bool
fn deserialize<'cx>( into: &mut Self::Accumulator, field: &'static str, deserializer: &mut Deserializer<'cx, 'xml>, ) -> Result<(), Error>
impl Eq for ZoneGroup
impl StructuralPartialEq for ZoneGroup
Auto Trait Implementations§
impl Freeze for ZoneGroup
impl RefUnwindSafe for ZoneGroup
impl Send for ZoneGroup
impl Sync for ZoneGroup
impl Unpin for ZoneGroup
impl UnwindSafe for ZoneGroup
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