pub struct ProjectRecord {
pub name: String,
pub repo_path: String,
pub index_prefix: String,
pub framework: String,
pub meili_host: String,
pub last_run_id: String,
pub updated_at: DateTime<Utc>,
}Fields§
§name: String§repo_path: String§index_prefix: String§framework: String§meili_host: String§last_run_id: String§updated_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for ProjectRecord
impl Clone for ProjectRecord
Source§fn clone(&self) -> ProjectRecord
fn clone(&self) -> ProjectRecord
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProjectRecord
impl Debug for ProjectRecord
Source§impl<'de> Deserialize<'de> for ProjectRecord
impl<'de> Deserialize<'de> for ProjectRecord
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
Source§impl PartialEq for ProjectRecord
impl PartialEq for ProjectRecord
Source§impl Serialize for ProjectRecord
impl Serialize for ProjectRecord
impl Eq for ProjectRecord
impl StructuralPartialEq for ProjectRecord
Auto Trait Implementations§
impl Freeze for ProjectRecord
impl RefUnwindSafe for ProjectRecord
impl Send for ProjectRecord
impl Sync for ProjectRecord
impl Unpin for ProjectRecord
impl UnsafeUnpin for ProjectRecord
impl UnwindSafe for ProjectRecord
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.