Struct xmpp_parsers::jingle_grouping::Group
source · pub struct Group {
pub semantics: Semantics,
pub contents: Vec<Content>,
}
Expand description
A semantic group of contents.
Fields§
§semantics: Semantics
Semantics of the grouping.
contents: Vec<Content>
List of contents that should be grouped with each other.
Trait Implementations§
source§impl FromXml for Group
impl FromXml for Group
§type Builder = FromEventsViaElement<Group>
type Builder = FromEventsViaElement<Group>
A builder type used to construct the element.
source§fn from_events(
qname: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( qname: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
source§impl IntoXml for Group
impl IntoXml for Group
§type EventIter = IntoEventsViaElement<Group>
type EventIter = IntoEventsViaElement<Group>
The iterator type.
source§fn into_event_iter(self) -> Result<Self::EventIter, Error>
fn into_event_iter(self) -> Result<Self::EventIter, Error>
Return an iterator which emits the contents of the struct or enum as
serialisable
rxml::Event
items.source§impl PartialEq for Group
impl PartialEq for Group
impl StructuralPartialEq for Group
Auto Trait Implementations§
impl Freeze for Group
impl RefUnwindSafe for Group
impl Send for Group
impl Sync for Group
impl Unpin for Group
impl UnwindSafe for Group
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