pub struct Fields {
pub list: Vec<String>,
}Expand description
The struct hold a list of field names.
Users of the Toql library should use the fields! macro to
build it. The fields! macro provides compile time garanties.
Unlike Query Fields is not typesafe.
This will be improved in the future.
Fields§
§list: Vec<String>Implementations§
Auto Trait Implementations§
impl Freeze for Fields
impl RefUnwindSafe for Fields
impl Send for Fields
impl Sync for Fields
impl Unpin for Fields
impl UnsafeUnpin for Fields
impl UnwindSafe for Fields
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