pub struct Engine {
pub id: usize,
pub companies: Vec<usize>,
pub created_at: u64,
pub description: String,
pub logo: usize,
pub name: String,
pub platforms: Vec<usize>,
pub url: String,
}
Fields§
§id: usize
§companies: Vec<usize>
§created_at: u64
§description: String
§logo: usize
§name: String
§platforms: Vec<usize>
§url: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Engine
impl<'de> Deserialize<'de> for Engine
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 Engine
impl RefUnwindSafe for Engine
impl Send for Engine
impl Sync for Engine
impl Unpin for Engine
impl UnwindSafe for Engine
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