Struct xmpp_parsers::jingle_ft::File
source · pub struct File {
pub date: Option<DateTime>,
pub media_type: Option<String>,
pub name: Option<String>,
pub descs: BTreeMap<String, Desc>,
pub size: Option<u64>,
pub range: Option<Range>,
pub hashes: Vec<Hash>,
}
Expand description
Represents a file to be transferred.
Fields§
§date: Option<DateTime>
The date of last modification of this file.
media_type: Option<String>
The MIME type of this file.
name: Option<String>
The name of this file.
descs: BTreeMap<String, Desc>
The description of this file, possibly localised.
size: Option<u64>
The size of this file, in bytes.
range: Option<Range>
Used to request only a part of this file.
hashes: Vec<Hash>
A list of hashes matching this entire file.
Implementations§
source§impl File
impl File
sourcepub fn with_date(self, date: DateTime) -> File
pub fn with_date(self, date: DateTime) -> File
Sets the date of last modification on this file.
sourcepub fn with_date_str(self, date: &str) -> Result<File, Error>
pub fn with_date_str(self, date: &str) -> Result<File, Error>
Sets the date of last modification on this file from an ISO-8601 string.
sourcepub fn with_media_type(self, media_type: String) -> File
pub fn with_media_type(self, media_type: String) -> File
Sets the MIME type of this file.
sourcepub fn with_range(self, range: Range) -> File
pub fn with_range(self, range: Range) -> File
Request only a range of this file.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for File
impl Send for File
impl Sync for File
impl Unpin for File
impl UnwindSafe for File
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