pub struct FkEdge {
pub constraint_name: Option<String>,
pub from_table: ObjectId,
pub from_columns: Vec<String>,
pub to_table: ObjectId,
pub to_columns: Vec<String>,
pub from_generation: u64,
}Fields§
§constraint_name: Option<String>§from_table: ObjectId§from_columns: Vec<String>§to_table: ObjectId§to_columns: Vec<String>§from_generation: u64Trait Implementations§
impl StructuralPartialEq for FkEdge
Auto Trait Implementations§
impl Freeze for FkEdge
impl RefUnwindSafe for FkEdge
impl Send for FkEdge
impl Sync for FkEdge
impl Unpin for FkEdge
impl UnsafeUnpin for FkEdge
impl UnwindSafe for FkEdge
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<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