pub struct AnnotationQueue {
pub id: String,
pub name: String,
pub description: Option<Option<String>>,
pub score_config_ids: Vec<String>,
pub created_at: String,
pub updated_at: String,
}Fields§
§id: String§name: String§description: Option<Option<String>>§score_config_ids: Vec<String>§created_at: String§updated_at: StringImplementations§
Source§impl AnnotationQueue
impl AnnotationQueue
Sourcepub fn builder() -> AnnotationQueueBuilder
pub fn builder() -> AnnotationQueueBuilder
Create an instance of AnnotationQueue using the builder syntax
Trait Implementations§
Source§impl Clone for AnnotationQueue
impl Clone for AnnotationQueue
Source§fn clone(&self) -> AnnotationQueue
fn clone(&self) -> AnnotationQueue
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 AnnotationQueue
impl Debug for AnnotationQueue
Source§impl Default for AnnotationQueue
impl Default for AnnotationQueue
Source§fn default() -> AnnotationQueue
fn default() -> AnnotationQueue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnnotationQueue
impl<'de> Deserialize<'de> for AnnotationQueue
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 AnnotationQueue
impl PartialEq for AnnotationQueue
Source§impl Serialize for AnnotationQueue
impl Serialize for AnnotationQueue
impl StructuralPartialEq for AnnotationQueue
Auto Trait Implementations§
impl Freeze for AnnotationQueue
impl RefUnwindSafe for AnnotationQueue
impl Send for AnnotationQueue
impl Sync for AnnotationQueue
impl Unpin for AnnotationQueue
impl UnwindSafe for AnnotationQueue
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