Skip to main content

ConceptUpsert

Struct ConceptUpsert 

Source
#[non_exhaustive]
pub struct ConceptUpsert { pub id: String, pub title: String, pub content: String, pub embedding_model: Option<String>, pub valid_from: String, pub valid_to: String, pub retired: bool, pub branch: Option<BranchId>, }
Expand description

A concept assertion: the payload of an upsert.

#[non_exhaustive] since 0.14.8 for EdgeAssertion’s reason: branch is the first field added since it was written, and one break is better than a recurring one.

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§id: String§title: String§content: String§embedding_model: Option<String>§valid_from: String§valid_to: String§retired: bool§branch: Option<BranchId>

The lineage this concept is minted on, or None for the trunk (§15.2, D-225).

The rule here is narrower than the edge’s, and it is the schema’s rather than this crate’s. concepts is a current-state projection keyed by identity — id is NOT NULL UNIQUE — so two lineages holding different beliefs about one concept is two rows with one id, which the unique index refuses on its own. trg_concepts_cross_lineage turns that refusal into DbError::CrossLineage so it says which rule was broken.

So a branch inherits its parent’s concepts and cannot restate them; what this field is for is a concept the branch mints, which is the case the trunk has no row for. A branch that needs to disagree with its parent about a concept’s content is asking for the overlay design, which is deferred with its reopen trigger named (D-214).

Implementations§

Source§

impl ConceptUpsert

Source

pub fn new(id: impl Into<String>, title: impl Into<String>) -> Self

Source

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

Source

pub fn embedding_model(self, model: impl Into<String>) -> Self

Source

pub fn valid_from(self, ts: impl Into<String>) -> Self

Source

pub fn valid_to(self, ts: impl Into<String>) -> Self

Source

pub fn on_branch(self, branch: BranchId) -> Self

Mint this concept on branch rather than on the trunk (0.14.8).

See branch for why a branch may mint a concept and may not restate one it inherited.

Source

pub fn retired(self, retired: bool) -> Self

Source

pub fn normalized(self) -> Result<Self>

Put the timestamps in canonical form (D-029) before they cross the channel.

Trait Implementations§

Source§

impl Clone for ConceptUpsert

Source§

fn clone(&self) -> ConceptUpsert

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ConceptUpsert

Source§

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

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

impl PartialEq for ConceptUpsert

Source§

fn eq(&self, other: &ConceptUpsert) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for ConceptUpsert

Auto Trait Implementations§

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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromRef<T> for T
where T: Clone,

Source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoRequest<T> for T

Source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

type Error = !

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>,

Source§

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> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more