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.

See the top-level documentation for AnnotationStore for a complete usage example.

Implementations§

source§

impl<'a> AnnotationBuilder<'a>

source

pub fn new() -> Self

source

pub fn data(&self) -> &Vec<AnnotationDataBuilder<'a>>

source

pub fn target(&self) -> Option<&SelectorBuilder<'a>>

source

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

Set an explicit ID. If you want to generate a random one, pass the result of generate_id() to the first parameter.

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, dataset: impl Into<BuildItem<'a, AnnotationDataSet>>, key: impl Into<BuildItem<'a, DataKey>>, value: impl Into<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: impl Into<BuildItem<'a, AnnotationDataSet>>, key: impl Into<BuildItem<'a, DataKey>>, value: impl Into<DataValue>, id: impl Into<BuildItem<'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_existing_data( self, dataset: impl Into<BuildItem<'a, AnnotationDataSet>>, annotationdata: impl Into<BuildItem<'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> Freeze for AnnotationBuilder<'a>

§

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 T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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 T
where 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> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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.
source§

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

source§

fn vzip(self) -> V

source§

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