pub struct SendConvocationRequest {
pub recipient_owner_ids: Option<Vec<Uuid>>,
}Fields§
§recipient_owner_ids: Option<Vec<Uuid>>Les destinataires, facultatifs.
Absents, le serveur convoque tous les copropriétaires actifs de
l’immeuble. Ce champ était obligatoire et le frontend envoyait {} :
l’extracteur web::Json rejetait la requête en 400 avant même
d’entrer dans le gestionnaire, si bien que le bouton « Envoyer »
paraissait sans effet. Constaté en recette le 2026-09-06 (RN-10),
premier des trois verrous qui empêchent une AG d’aboutir (#780).
None (champ absent, ancien client) : le serveur déduit tous les
copropriétaires actifs de l’immeuble. Some(vec![]) (l’écran de
sélection rendu, tout décoché) : refusé explicitement, pas remplacé en
silence par le défaut — un renoncement délibéré n’est pas une absence
de choix. Voir ConvocationUseCases::list_eligible_recipients.
Trait Implementations§
Source§impl Debug for SendConvocationRequest
impl Debug for SendConvocationRequest
Source§impl<'de> Deserialize<'de> for SendConvocationRequest
impl<'de> Deserialize<'de> for SendConvocationRequest
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 SendConvocationRequest
impl RefUnwindSafe for SendConvocationRequest
impl Send for SendConvocationRequest
impl Sync for SendConvocationRequest
impl Unpin for SendConvocationRequest
impl UnsafeUnpin for SendConvocationRequest
impl UnwindSafe for SendConvocationRequest
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
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.