pub struct ScalewayMarketplaceImage {
pub id: String,
pub name: String,
pub description: String,
pub logo: String,
pub categories: Vec<String>,
pub created_at: String,
pub updated_at: Option<String>,
pub valid_until: Option<String>,
pub label: String,
}
Fields§
§id: String
§name: String
§description: String
§logo: String
§categories: Vec<String>
§created_at: String
§updated_at: Option<String>
§valid_until: Option<String>
§label: String
Trait Implementations§
Source§impl Debug for ScalewayMarketplaceImage
impl Debug for ScalewayMarketplaceImage
Source§impl<'de> Deserialize<'de> for ScalewayMarketplaceImage
impl<'de> Deserialize<'de> for ScalewayMarketplaceImage
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 ScalewayMarketplaceImage
impl RefUnwindSafe for ScalewayMarketplaceImage
impl Send for ScalewayMarketplaceImage
impl Sync for ScalewayMarketplaceImage
impl Unpin for ScalewayMarketplaceImage
impl UnwindSafe for ScalewayMarketplaceImage
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