pub struct ImageInfo {
pub image_id: String,
pub permalink_url: Option<String>,
pub url: String,
pub access_policy: Option<AccessPolicy>,
pub ocr: Ocr,
pub metadata: Metadata,
pub type: String,
pub created_at: String,
}
Expand description
Information about a Gyazo image.
Fields§
§image_id: String
Unique identifier of the image.
permalink_url: Option<String>
URL to the image permalink.
url: String
Direct URL to the image.
access_policy: Option<AccessPolicy>
Access policy of the image.
ocr: Ocr
OCR information of the image.
metadata: Metadata
Metadata associated with the image.
type: String
Type of the image.
created_at: String
Creation timestamp of the image.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ImageInfo
impl<'de> Deserialize<'de> for ImageInfo
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
Auto Trait Implementations§
impl Freeze for ImageInfo
impl RefUnwindSafe for ImageInfo
impl Send for ImageInfo
impl Sync for ImageInfo
impl Unpin for ImageInfo
impl UnwindSafe for ImageInfo
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