pub struct Image {
pub frames: String,
pub height: String,
pub mp_4: String,
pub mp_4_size: String,
pub size: String,
pub url: String,
pub webp: String,
pub webp_size: String,
pub width: String,
}Fields§
§frames: StringThe unique bit.ly URL for this GIF
height: StringThe unique bit.ly URL for this GIF
mp_4: StringThe unique bit.ly URL for this GIF
mp_4_size: StringThe unique bit.ly URL for this GIF
size: StringThe unique bit.ly URL for this GIF
url: StringThe unique bit.ly URL for this GIF
webp: StringThe unique bit.ly URL for this GIF
webp_size: StringThe unique bit.ly URL for this GIF
width: StringThe unique bit.ly URL for this GIF
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Image
impl<'de> Deserialize<'de> for Image
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for Image
impl JsonSchema for Image
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreimpl StructuralPartialEq 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