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 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