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

source

pub fn new() -> File

Creates a new file descriptor.

source

pub fn with_date(self, date: DateTime) -> File

Sets the date of last modification on this file.

source

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.

source

pub fn with_media_type(self, media_type: String) -> File

Sets the MIME type of this file.

source

pub fn with_name(self, name: String) -> File

Sets the name of this file.

source

pub fn add_desc(self, lang: &str, desc: Desc) -> File

Sets a description for this file.

source

pub fn with_size(self, size: u64) -> File

Sets the file size of this file, in bytes.

source

pub fn with_range(self, range: Range) -> File

Request only a range of this file.

source

pub fn add_hash(self, hash: Hash) -> File

Add a hash on this file.

Trait Implementations§

source§

impl Clone for File

source§

fn clone(&self) -> File

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for File

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for File

source§

fn default() -> File

Returns the “default value” for a type. Read more
source§

impl From<File> for Element

source§

fn from(file: File) -> Element

Converts to this type from the input type.
source§

impl TryFrom<Element> for File

§

type Error = FromElementError

The type returned in the event of a conversion error.
source§

fn try_from(elem: Element) -> Result<File, FromElementError>

Performs the conversion.

Auto Trait Implementations§

§

impl Freeze for File

§

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> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.