pub struct RequeteAg {
pub cosignataires: Vec<Uuid>,
pub quotites_reunies: Decimal,
pub recue_le: DateTime<Utc>,
pub echeance_convocation: DateTime<Utc>,
}Expand description
Une requête d’assemblée générale, recevable.
Fields§
§cosignataires: Vec<Uuid>§quotites_reunies: Decimal§recue_le: DateTime<Utc>Date de réception par le syndic — c’est elle qui fait courir le délai, pas la date d’envoi ni celle de signature.
echeance_convocation: DateTime<Utc>Implementations§
Source§impl RequeteAg
impl RequeteAg
Sourcepub fn syndic_defaillant(
&self,
convoquee_le: Option<DateTime<Utc>>,
moment: DateTime<Utc>,
) -> bool
pub fn syndic_defaillant( &self, convoquee_le: Option<DateTime<Utc>>, moment: DateTime<Utc>, ) -> bool
Le syndic a-t-il laissé passer le délai ?
convoquee_le est la date à laquelle il a adressé la convocation, si
il l’a fait.
Sourcepub fn peut_convoquer_lui_meme(
&self,
copropietaire: Uuid,
convoquee_le: Option<DateTime<Utc>>,
moment: DateTime<Utc>,
) -> bool
pub fn peut_convoquer_lui_meme( &self, copropietaire: Uuid, convoquee_le: Option<DateTime<Utc>>, moment: DateTime<Utc>, ) -> bool
Un cosignataire peut-il convoquer lui-même ?
C’est la sanction du silence (Art. 3.87 § 2, alinéa 3), et elle ne s’ouvre qu’aux cosignataires : un copropriétaire qui n’a pas signé la requête ne récupère pas ce pouvoir.
Trait Implementations§
impl StructuralPartialEq for RequeteAg
Auto Trait Implementations§
impl Freeze for RequeteAg
impl RefUnwindSafe for RequeteAg
impl Send for RequeteAg
impl Sync for RequeteAg
impl Unpin for RequeteAg
impl UnsafeUnpin for RequeteAg
impl UnwindSafe for RequeteAg
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> 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.