Struct mango_orm::forms::ImageData[][src]

pub struct ImageData {
Show fields pub path: String, pub path_xs: String, pub path_sm: String, pub path_md: String, pub path_lg: String, pub url: String, pub url_xs: String, pub url_sm: String, pub url_md: String, pub url_lg: String, pub name: String, pub size: u32, pub width: u32, pub height: u32,
}

Fields

path: Stringpath_xs: Stringpath_sm: Stringpath_md: Stringpath_lg: Stringurl: Stringurl_xs: Stringurl_sm: Stringurl_md: Stringurl_lg: Stringname: Stringsize: u32width: u32height: u32

Trait Implementations

impl Clone for ImageData[src]

impl Debug for ImageData[src]

impl Default for ImageData[src]

impl<'de> Deserialize<'de> for ImageData[src]

impl PartialEq<ImageData> for ImageData[src]

impl Serialize for ImageData[src]

impl StructuralPartialEq for ImageData[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,