pub struct StoredQueryNamespace {
pub temporary_schema: String,
pub transition_relations: BTreeSet<String>,
}Expand description
Namespace metadata captured at the start of a stored query binding pass.
Fields§
§temporary_schema: String§transition_relations: BTreeSet<String>Auto Trait Implementations§
impl Freeze for StoredQueryNamespace
impl RefUnwindSafe for StoredQueryNamespace
impl Send for StoredQueryNamespace
impl Sync for StoredQueryNamespace
impl Unpin for StoredQueryNamespace
impl UnsafeUnpin for StoredQueryNamespace
impl UnwindSafe for StoredQueryNamespace
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
impl<T> ErasedDestructor for Twhere
T: 'static,
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