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 AsXml for Info
impl AsXml for Info
§type ItemIter<'xso_proc_as_xml_iter_lifetime> = InfoAsXmlIterator<'xso_proc_as_xml_iter_lifetime>
type ItemIter<'xso_proc_as_xml_iter_lifetime> = InfoAsXmlIterator<'xso_proc_as_xml_iter_lifetime>
The iterator type. Read more
source§fn as_xml_iter(&self) -> Result<Self::ItemIter<'_>, Error>
fn as_xml_iter(&self) -> Result<Self::ItemIter<'_>, Error>
Return an iterator which emits the contents of the struct or enum as
serialisable [
Item
] items.source§impl PartialEq for Info
impl PartialEq for Info
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
)