pub struct Dependencies {
pub schemas: Vec<(usize, u32)>,
pub generation: u64,
}Expand description
Every database and cookie a bound statement depends on.
Fields§
§schemas: Vec<(usize, u32)>The (database index, schema cookie) pairs the statement was bound
against.
generation: u64The catalog generation the statement was bound against.
Trait Implementations§
Source§impl Clone for Dependencies
impl Clone for Dependencies
Source§impl Debug for Dependencies
impl Debug for Dependencies
Source§impl Default for Dependencies
impl Default for Dependencies
impl Eq for Dependencies
Source§impl PartialEq for Dependencies
impl PartialEq for Dependencies
impl StructuralPartialEq for Dependencies
Auto Trait Implementations§
impl Freeze for Dependencies
impl RefUnwindSafe for Dependencies
impl Send for Dependencies
impl Sync for Dependencies
impl Unpin for Dependencies
impl UnsafeUnpin for Dependencies
impl UnwindSafe for Dependencies
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