pub struct DatalogEntryResponse {
pub name: String,
pub id: u32,
pub entry_type: String,
pub metadata: String,
pub life_status: EntryLifeStatus,
pub marks: Vec<DataLogResponse>,
}
Fields§
§name: String
§id: u32
§entry_type: String
§metadata: String
§life_status: EntryLifeStatus
§marks: Vec<DataLogResponse>
Trait Implementations§
Source§impl Clone for DatalogEntryResponse
impl Clone for DatalogEntryResponse
Source§fn clone(&self) -> DatalogEntryResponse
fn clone(&self) -> DatalogEntryResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DatalogEntryResponse
impl Debug for DatalogEntryResponse
Source§impl<'de> Deserialize<'de> for DatalogEntryResponse
impl<'de> Deserialize<'de> for DatalogEntryResponse
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 DatalogEntryResponse
impl RefUnwindSafe for DatalogEntryResponse
impl Send for DatalogEntryResponse
impl Sync for DatalogEntryResponse
impl Unpin for DatalogEntryResponse
impl UnwindSafe for DatalogEntryResponse
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