Skip to main content

Accepted

Enum Accepted 

Source
#[non_exhaustive]
pub enum Accepted<'a> { Family(Family), Type(&'a str), Suffix(&'a str), }
Expand description

One entry in a file field’s accept list.

Three shapes rather than a string, and all three are in the measured sites: the MNW server writes image/*, image/jpeg,image/png,image/webp, .zip,.dmg,.exe,.appimage,.deb,.tar.gz,.clap,.vst3 and, in one place, .csv,text/csv. A single string would carry all of them and answer nothing about any of them.

§Why the list is not just a filter

It is read twice. Once to decide what the picker offers, which any of the three shapes serves, and once to decide which disclosure the field gets: a preview for a picture, a duration or a waveform for a sound. There is one upload shape and a media upload is that shape with more of it shown, so the accept list is what says which more. family is that question answered once here instead of a media-type parser in each renderer.

§A suffix names no family, on purpose

.mp3 is audio in fact, and nothing here says so. A suffix-to-family table in a published crate is a mapping that goes stale, disagrees with the host’s own idea of what a file is, and is wrong the first time somebody hands it a container. A call site that wants a picture’s preview writes Family::Image or image/jpeg; a call site listing installer suffixes wants no disclosure anyway, which is the measured case.

Added 0.31.0, f7261a5a.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Family(Family)

Every file of a family: image/* and its siblings.

§

Type(&'a str)

One media type, written the way a media type is written: image/jpeg, text/csv.

§

Suffix(&'a str)

One file-name suffix, written with its leading dot: .zip, .tar.gz.

A suffix and not an extension, because .tar.gz is a measured site and is two dots.

Implementations§

Source§

impl<'a> Accepted<'a>

Source

pub fn family(self) -> Option<Family>

The family this entry belongs to, when it names one.

None for a Suffix and for any media type outside the three families, which is the honest answer rather than a missing one: the description did not say.

Source

pub const fn as_str(self) -> &'a str

How a host that wants one string writes this entry.

A webview’s accept attribute takes exactly these spellings, and a terminal listing what it will take reads the same words.

Trait Implementations§

Source§

impl<'a> Clone for Accepted<'a>

Source§

fn clone(&self) -> Accepted<'a>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl<'a> Copy for Accepted<'a>

Source§

impl<'a> Debug for Accepted<'a>

Source§

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

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

impl<'a> Eq for Accepted<'a>

Source§

impl<'a> Hash for Accepted<'a>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<'a> PartialEq for Accepted<'a>

Source§

fn eq(&self, other: &Accepted<'a>) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl<'a> StructuralPartialEq for Accepted<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for Accepted<'a>

§

impl<'a> RefUnwindSafe for Accepted<'a>

§

impl<'a> Send for Accepted<'a>

§

impl<'a> Sync for Accepted<'a>

§

impl<'a> Unpin for Accepted<'a>

§

impl<'a> UnsafeUnpin for Accepted<'a>

§

impl<'a> UnwindSafe for Accepted<'a>

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

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

Source§

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

Source§

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.