Struct xmpp_parsers::avatar::Info
source · pub struct Info {
pub bytes: u32,
pub width: Option<u16>,
pub height: Option<u16>,
pub id: Sha1HexAttribute,
pub type_: String,
pub url: Option<String>,
}
Expand description
Communicates avatar metadata.
Fields§
§bytes: u32
The size of the image data in bytes.
width: Option<u16>
The width of the image in pixels.
height: Option<u16>
The height of the image in pixels.
id: Sha1HexAttribute
The SHA-1 hash of the image data for the specified content-type.
type_: String
The IANA-registered content type of the image data.
url: Option<String>
The http: or https: URL at which the image data file is hosted.
Trait Implementations§
source§impl FromXml for Info
impl FromXml for Info
§type Builder = FromEventsViaElement<Info>
type Builder = FromEventsViaElement<Info>
A builder type used to construct the element. Read more
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 Info
impl IntoXml for Info
§type EventIter = IntoEventsViaElement
type EventIter = IntoEventsViaElement
The iterator type. Read more
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 Info
impl PartialEq for Info
source§impl TryFrom<Element> for Info
impl TryFrom<Element> for Info
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
impl StructuralPartialEq for Info
Auto Trait Implementations§
impl Freeze for Info
impl RefUnwindSafe for Info
impl Send for Info
impl Sync for Info
impl Unpin for Info
impl UnwindSafe for Info
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)