pub struct Project {
pub id: String,
pub address: String,
pub v: Option<i64>,
pub description: String,
pub disable_animation: bool,
pub img_src: String,
pub is_whitelisted: bool,
pub metadata: Metadata,
pub name: String,
}Fields§
§id: String§address: String§v: Option<i64>§description: String§disable_animation: bool§img_src: String§is_whitelisted: bool§metadata: Metadata§name: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Project
impl<'de> Deserialize<'de> for Project
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 Project
impl RefUnwindSafe for Project
impl Send for Project
impl Sync for Project
impl Unpin for Project
impl UnwindSafe for Project
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