Struct stam::AnnotationBuilder

source ·
pub struct AnnotationBuilder<'a> { /* private fields */ }
Expand description

This is the builder that builds Annotation. The actual building is done by passing this structure to AnnotationStore::annotate(), there is no build() method for this builder.

Implementations§

source§

impl<'a> AnnotationBuilder<'a>

source

pub fn new() -> Self

source

pub fn with_id(self, id: String) -> Self

source

pub fn with_selector(self, selector: Selector) -> Self

Sets the annotation target using an already existing selector Use [Self.with_target()] or one of the target_ shortcut methods instead if you still need to build the target selector

source

pub fn with_target(self, selector: SelectorBuilder<'a>) -> Self

Set the target to be a crate::resources::TextResource. Creates a Selector::ResourceSelector Sets the annotation target. Instantiates a new selector. Use [Self.with_target()] instead if you already have a selector. Under the hood, this will invoke select() to obtain a selector.

source

pub fn with_data( self, annotationset: Item<'a, AnnotationDataSet>, key: Item<'a, DataKey>, value: DataValue ) -> Self

Associate data with the annotation. If you provide a public key ID that does not exist yet, it’s crate::DataKey will be created.

You may use this (and similar methods) multiple times. Do note that multiple data associated with the same annotation is considered inter-dependent, use multiple annotations instead if each it interpretable independent of the others.

source

pub fn with_data_with_id( self, dataset: Item<'a, AnnotationDataSet>, key: Item<'a, DataKey>, value: DataValue, id: Item<'a, AnnotationData> ) -> Self

Use this method instead of Self::with_data() if you want to assign a public identifier (last argument)

source

pub fn with_data_by_id( self, dataset: Item<'a, AnnotationDataSet>, id: Item<'a, AnnotationData> ) -> Self

This references existing AnnotationData, in a particular [`AnnotationDataSet’], by Id. Useful if you have an Id or reference instance already.

source

pub fn with_data_builder(self, builder: AnnotationDataBuilder<'a>) -> Self

Lower level method if you want to create and pass [`AnnotationDataBuilder’] yourself rather than use the other with_data_*() shortcut methods.

source

pub fn from_json_file( filename: &str, config: &Config ) -> Result<Self, StamError>

Reads a single annotation in STAM JSON from file

source

pub fn from_json_str(string: &str) -> Result<Self, StamError>

Reads a single annotation in STAM JSON from string

Trait Implementations§

source§

impl<'a> Debug for AnnotationBuilder<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> Default for AnnotationBuilder<'a>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de, 'a> Deserialize<'de> for AnnotationBuilder<'a>

source§

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<'a> RefUnwindSafe for AnnotationBuilder<'a>

§

impl<'a> Send for AnnotationBuilder<'a>

§

impl<'a> Sync for AnnotationBuilder<'a>

§

impl<'a> Unpin for AnnotationBuilder<'a>

§

impl<'a> UnwindSafe for AnnotationBuilder<'a>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,