pub struct DbState {
pub project_configuration: HydrateProjectConfiguration,
pub editor_model: EditorModel,
}Fields§
§project_configuration: HydrateProjectConfiguration§editor_model: EditorModelImplementations§
Source§impl DbState
impl DbState
pub fn load_schema( hydrate_project_configuration: &HydrateProjectConfiguration, ) -> SchemaSet
pub fn load( schema_set: &SchemaSet, importer_registry: &ImporterRegistry, project_configuration: &HydrateProjectConfiguration, import_job_to_queue: &mut ImportJobToQueue, ) -> Self
pub fn save(&mut self)
Auto Trait Implementations§
impl Freeze for DbState
impl !RefUnwindSafe for DbState
impl !Send for DbState
impl !Sync for DbState
impl Unpin for DbState
impl !UnwindSafe for DbState
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