pub struct UnitFilters {
pub organization_id: Option<Uuid>,
pub acp_id: Option<Uuid>,
pub building_id: Option<Uuid>,
pub unit_type: Option<String>,
pub has_owner: Option<bool>,
pub floor: Option<i32>,
pub min_area: Option<f64>,
pub max_area: Option<f64>,
}Expand description
Filters for unit list queries
Fields§
§organization_id: Option<Uuid>Story H15 — Scope organisation : filtre les lots dont l’ACP appartient
à cette organisation. Le repository traduit en
acp_id IN (SELECT id FROM acps WHERE organization_id = $) (la colonne
units.organization_id a été DROP en migration 20260630030000).
acp_id: Option<Uuid>Story H15 — Scope ACP direct (filtre units.acp_id = $).
building_id: Option<Uuid>§unit_type: Option<String>§has_owner: Option<bool>§floor: Option<i32>§min_area: Option<f64>§max_area: Option<f64>Trait Implementations§
Source§impl Clone for UnitFilters
impl Clone for UnitFilters
Source§fn clone(&self) -> UnitFilters
fn clone(&self) -> UnitFilters
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UnitFilters
impl Debug for UnitFilters
Source§impl Default for UnitFilters
impl Default for UnitFilters
Source§fn default() -> UnitFilters
fn default() -> UnitFilters
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UnitFilters
impl<'de> Deserialize<'de> for UnitFilters
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UnitFilters
impl RefUnwindSafe for UnitFilters
impl Send for UnitFilters
impl Sync for UnitFilters
impl Unpin for UnitFilters
impl UnsafeUnpin for UnitFilters
impl UnwindSafe for UnitFilters
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
§impl<T> Fake for T
impl<T> Fake for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 moreCreates a shared type from an unshared type.