Skip to main content

Uploadstash

Enum Uploadstash 

Source
#[non_exhaustive]
pub enum Uploadstash {
Show 18 variants Table, ChunkInx, Id, ImageBits, ImageHeight, ImageWidth, Key, MediaType, Mime, OrigPath, Path, Props, Sha1, Size, SourceType, Status, Timestamp, User,
}
Expand description

uploadstash table

Documentation may be available on mediawiki.org.

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

Table

§

ChunkInx

us_chunk_inx column

§

Id

us_id column

§

ImageBits

us_image_bits column

§

ImageHeight

us_image_height column

§

ImageWidth

us_image_width column

§

Key

us_key column

§

MediaType

us_media_type column

§

Mime

us_mime column

§

OrigPath

us_orig_path column

§

Path

us_path column

§

Props

us_props column

§

Sha1

us_sha1 column

§

Size

us_size column

§

SourceType

us_source_type column

§

Status

us_status column

§

Timestamp

us_timestamp column

§

User

us_user column

Trait Implementations§

Source§

impl AsRef<str> for Uploadstash

Source§

fn as_ref(&self) -> &'static str

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl Clone for Uploadstash

Source§

fn clone(&self) -> Uploadstash

Returns a duplicate 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 Iden for Uploadstash

Source§

fn prepare(&self, s: &mut dyn Write, q: Quote)

Source§

fn unquoted(&self, s: &mut dyn Write)

Write a raw identifier string without quotes. Read more
§

fn quoted(&self, q: Quote) -> String

§

fn to_string(&self) -> String

A shortcut for writing an [unquoted][Iden::unquoted] identifier into a String. Read more
Source§

impl IdenStatic for Uploadstash

Source§

fn as_str(&self) -> &'static str

Source§

impl Copy for Uploadstash

Auto Trait Implementations§

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.

§

impl<I> IdenList for I
where I: IntoIden,

§

type IntoIter = Once<SeaRc<dyn Iden>>

§

fn into_iter(self) -> <I as IdenList>::IntoIter

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.

§

impl<T> IntoColumnRef for T
where T: 'static + IntoIden,

§

fn into_column_ref(self) -> ColumnRef

§

impl<T> IntoIden for T
where T: 'static + Iden,

§

fn into_iden(self) -> SeaRc<dyn Iden>

§

impl<I> IntoIndexColumn for I
where I: IntoIden,

§

fn into_index_column(self) -> IndexColumn

§

impl<T> IntoTableRef for T
where T: 'static + IntoIden,

§

fn into_table_ref(self) -> TableRef

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.