Struct plexo_sdk::projects::operations::GetProjectsWhere
source · pub struct GetProjectsWhere {
pub name: Option<String>,
pub prefix: Option<String>,
pub owner_id: Option<Uuid>,
pub description: Option<String>,
pub lead_id: Option<Uuid>,
pub start_date: Option<DateTime<Utc>>,
pub due_date: Option<DateTime<Utc>>,
pub _and: Option<Vec<GetProjectsWhere>>,
pub _or: Option<Vec<GetProjectsWhere>>,
}Fields§
§name: Option<String>§prefix: Option<String>§owner_id: Option<Uuid>§description: Option<String>§lead_id: Option<Uuid>§start_date: Option<DateTime<Utc>>§due_date: Option<DateTime<Utc>>§_and: Option<Vec<GetProjectsWhere>>§_or: Option<Vec<GetProjectsWhere>>Implementations§
source§impl GetProjectsWhere
impl GetProjectsWhere
pub fn compile_sql(&self) -> String
Auto Trait Implementations§
impl RefUnwindSafe for GetProjectsWhere
impl Send for GetProjectsWhere
impl Sync for GetProjectsWhere
impl Unpin for GetProjectsWhere
impl UnwindSafe for GetProjectsWhere
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