#[repr(C)]pub struct PersonQuery {
pub father_of: Set64<Key<Person>>,
pub mother_of: Set64<Key<Person>>,
/* private fields */
}
Expand description
This table has keys to other tables
Fields§
§father_of: Set64<Key<Person>>
§mother_of: Set64<Key<Person>>
Trait Implementations§
Source§impl Clone for PersonQuery
impl Clone for PersonQuery
Source§fn clone(&self) -> PersonQuery
fn clone(&self) -> PersonQuery
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for PersonQuery
impl RefUnwindSafe for PersonQuery
impl Send for PersonQuery
impl Sync for PersonQuery
impl Unpin for PersonQuery
impl UnwindSafe for PersonQuery
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