pub struct PdfStyle {
pub id: ImageStyleId,
pub display_name: String,
pub created_at: DateTime<Utc>,
pub updated_at: Option<DateTime<Utc>>,
}
Expand description
Represents an image style.
Fields§
§id: ImageStyleId
The id of the image style.
display_name: String
The image style’s name.
created_at: DateTime<Utc>
When the image style was created.
updated_at: Option<DateTime<Utc>>
When the image style was last updated.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PdfStyle
impl<'de> Deserialize<'de> for PdfStyle
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 PdfStyle
impl RefUnwindSafe for PdfStyle
impl Send for PdfStyle
impl Sync for PdfStyle
impl Unpin for PdfStyle
impl UnwindSafe for PdfStyle
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