pub struct AddOutcome {
pub pkg_id: String,
pub item: String,
pub target_component_id: String,
pub instance_id: String,
pub provenance_id: String,
pub warnings: Vec<String>,
}Expand description
The outcome of a successful super::materialize call.
All ids are the FINAL ids written into the target document, so the caller can build a deterministic human/JSON summary without re-deriving them.
Fields§
§pkg_id: StringThe package id the item came from (e.g. @zenith/flowchart).
item: StringThe item name within the pack (e.g. decision).
target_component_id: StringThe namespaced target component id the item was copied to.
instance_id: StringThe unique id of the inserted instance node.
provenance_id: StringThe unique id of the recorded provenance entry.
warnings: Vec<String>Non-fatal dependency-conflict warnings (a pack token/style/asset id that
already existed in the target with a DIFFERENT definition; the target’s
existing definition was kept). Each entry is a library.dependency_conflict
human-readable line.
Trait Implementations§
Source§impl Clone for AddOutcome
impl Clone for AddOutcome
Source§fn clone(&self) -> AddOutcome
fn clone(&self) -> AddOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AddOutcome
impl Debug for AddOutcome
impl Eq for AddOutcome
Source§impl PartialEq for AddOutcome
impl PartialEq for AddOutcome
Source§fn eq(&self, other: &AddOutcome) -> bool
fn eq(&self, other: &AddOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AddOutcome
Auto Trait Implementations§
impl Freeze for AddOutcome
impl RefUnwindSafe for AddOutcome
impl Send for AddOutcome
impl Sync for AddOutcome
impl Unpin for AddOutcome
impl UnsafeUnpin for AddOutcome
impl UnwindSafe for AddOutcome
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
Source§fn to_owned_obj(&self, data: FontData<'_>) -> U
fn to_owned_obj(&self, data: FontData<'_>) -> U
Convert this type into
T, using the provided data to resolve any offsets.