pub struct GroupScoreChunk {
pub file_id: Option<Option<Uuid>>,
pub group_created_at: String,
pub group_dataset_id: Uuid,
pub group_description: Option<Option<String>>,
pub group_id: Uuid,
pub group_metadata: Option<Option<Value>>,
pub group_name: Option<Option<String>>,
pub group_tag_set: Option<Option<Vec<String>>>,
pub group_tracking_id: Option<Option<String>>,
pub group_updated_at: String,
pub metadata: Vec<ScoreChunkDto>,
}
Fields§
§file_id: Option<Option<Uuid>>
§group_created_at: String
§group_dataset_id: Uuid
§group_description: Option<Option<String>>
§group_id: Uuid
§group_metadata: Option<Option<Value>>
§group_name: Option<Option<String>>
§group_tag_set: Option<Option<Vec<String>>>
§group_tracking_id: Option<Option<String>>
§group_updated_at: String
§metadata: Vec<ScoreChunkDto>
Implementations§
Source§impl GroupScoreChunk
impl GroupScoreChunk
pub fn new( group_created_at: String, group_dataset_id: Uuid, group_id: Uuid, group_updated_at: String, metadata: Vec<ScoreChunkDto>, ) -> GroupScoreChunk
Trait Implementations§
Source§impl Clone for GroupScoreChunk
impl Clone for GroupScoreChunk
Source§fn clone(&self) -> GroupScoreChunk
fn clone(&self) -> GroupScoreChunk
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 GroupScoreChunk
impl Debug for GroupScoreChunk
Source§impl Default for GroupScoreChunk
impl Default for GroupScoreChunk
Source§fn default() -> GroupScoreChunk
fn default() -> GroupScoreChunk
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GroupScoreChunk
impl<'de> Deserialize<'de> for GroupScoreChunk
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 GroupScoreChunk
impl PartialEq for GroupScoreChunk
Source§impl Serialize for GroupScoreChunk
impl Serialize for GroupScoreChunk
impl StructuralPartialEq for GroupScoreChunk
Auto Trait Implementations§
impl Freeze for GroupScoreChunk
impl RefUnwindSafe for GroupScoreChunk
impl Send for GroupScoreChunk
impl Sync for GroupScoreChunk
impl Unpin for GroupScoreChunk
impl UnwindSafe for GroupScoreChunk
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