#[non_exhaustive]pub enum Image {
Show 14 variants
Table,
Actor,
Bits,
DescriptionId,
Height,
MajorMime,
MediaType,
Metadata,
MinorMime,
Name,
Sha1,
Size,
Timestamp,
Width,
}Expand description
image 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
Actor
img_actor column
Bits
img_bits column
DescriptionId
img_description_id column
Height
img_height column
MajorMime
img_major_mime column
MediaType
img_media_type column
Metadata
img_metadata column
MinorMime
img_minor_mime column
Name
img_name column
Sha1
img_sha1 column
Size
img_size column
Timestamp
img_timestamp column
Width
img_width column
Trait Implementations§
Source§impl Iden for Image
impl Iden for Image
impl Copy for Image
Auto Trait Implementations§
impl Freeze for Image
impl RefUnwindSafe for Image
impl Send for Image
impl Sync for Image
impl Unpin for Image
impl UnsafeUnpin for Image
impl UnwindSafe for Image
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