pub struct LocalState {
pub relations: HashMap<ObjectId, RelationOverlay>,
pub types: HashMap<ObjectId, TypeOverlay>,
pub sequences: HashMap<ObjectId, SequenceOverlay>,
pub graph: DependencyGraph,
pub search_path: Vec<String>,
pub confidence: Confidence,
pub transactions: Vec<TransactionFrame>,
pub pending_validation: HashSet<(ObjectId, String)>,
pub generation_counter: u64,
}Fields§
§relations: HashMap<ObjectId, RelationOverlay>§types: HashMap<ObjectId, TypeOverlay>§sequences: HashMap<ObjectId, SequenceOverlay>§graph: DependencyGraph§search_path: Vec<String>§confidence: Confidence§transactions: Vec<TransactionFrame>§pending_validation: HashSet<(ObjectId, String)>§generation_counter: u64Auto Trait Implementations§
impl Freeze for LocalState
impl RefUnwindSafe for LocalState
impl Send for LocalState
impl Sync for LocalState
impl Unpin for LocalState
impl UnsafeUnpin for LocalState
impl UnwindSafe for LocalState
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> 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