pub struct ObservationDraftResolveArgs {Show 13 fields
pub id: Uuid,
pub dimension: String,
pub value: Option<String>,
pub value_file: Option<String>,
pub context_text: Option<String>,
pub confidence: Option<f64>,
pub tags: Vec<String>,
pub source: Option<String>,
pub agent: Option<String>,
pub device: Option<String>,
pub session_id: Option<String>,
pub idempotency_key: Option<String>,
pub retract_reason: Option<String>,
}Fields§
§id: UuidDraft observation event id
dimension: StringStable non-provisional observation dimension (e.g. competition_note)
value: Option<String>Optional observation value as JSON string
value_file: Option<String>Optional observation value JSON from file (use ‘-’ for stdin)
context_text: Option<String>Optional context text override
confidence: Option<f64>Optional confidence override (0..1 recommended)
Optional tags (repeat –tag)
source: Option<String>Optional metadata.source override
agent: Option<String>Optional metadata.agent override
device: Option<String>Optional metadata.device override
session_id: Option<String>Optional metadata.session_id override
idempotency_key: Option<String>Optional metadata.idempotency_key override
retract_reason: Option<String>Optional retraction reason
Trait Implementations§
Source§impl Args for ObservationDraftResolveArgs
impl Args for ObservationDraftResolveArgs
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl FromArgMatches for ObservationDraftResolveArgs
impl FromArgMatches for ObservationDraftResolveArgs
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Auto Trait Implementations§
impl Freeze for ObservationDraftResolveArgs
impl RefUnwindSafe for ObservationDraftResolveArgs
impl Send for ObservationDraftResolveArgs
impl Sync for ObservationDraftResolveArgs
impl Unpin for ObservationDraftResolveArgs
impl UnsafeUnpin for ObservationDraftResolveArgs
impl UnwindSafe for ObservationDraftResolveArgs
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more