pub struct BuildingFilters {
pub organization_id: Option<Uuid>,
pub acp_id: Option<Uuid>,
pub city: Option<String>,
pub construction_year: Option<i32>,
pub min_units: Option<i32>,
pub max_units: Option<i32>,
pub owner_user_id: Option<Uuid>,
pub search: Option<String>,
}Expand description
Filters for building list queries
Fields§
§organization_id: Option<Uuid>Story 1.3 — Scope organisation : filtre les buildings dont
l’ACP parente appartient à cette organisation. Le repository
traduit en acp_id IN (SELECT id FROM acps WHERE organization_id = $)
(la colonne buildings.organization_id a été DROP en migration 040000).
acp_id: Option<Uuid>Story 1.2 — Scope ACP direct (filtre buildings.acp_id = $).
city: Option<String>§construction_year: Option<i32>§min_units: Option<i32>§max_units: Option<i32>§owner_user_id: Option<Uuid>BUG-WF14-2: Si défini, filtre les buildings où cet user possède un lot (via owners.user_id → unit_owners → units)
search: Option<String>Recherche libre (ILIKE) sur name/city/address — évite au frontend de devoir fetch les 100 premiers buildings puis filtrer en mémoire (BuildingSelector : ratait les buildings récents une fois >100 buildings créés globalement en CI, cf. searchBuildings côté frontend).
Trait Implementations§
Source§impl Clone for BuildingFilters
impl Clone for BuildingFilters
Source§fn clone(&self) -> BuildingFilters
fn clone(&self) -> BuildingFilters
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 BuildingFilters
impl Debug for BuildingFilters
Source§impl Default for BuildingFilters
impl Default for BuildingFilters
Source§fn default() -> BuildingFilters
fn default() -> BuildingFilters
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BuildingFilters
impl<'de> Deserialize<'de> for BuildingFilters
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 BuildingFilters
impl RefUnwindSafe for BuildingFilters
impl Send for BuildingFilters
impl Sync for BuildingFilters
impl Unpin for BuildingFilters
impl UnsafeUnpin for BuildingFilters
impl UnwindSafe for BuildingFilters
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.