pub enum StatutFondsReserve {
ReceptionInconnue,
PasEncoreExigible {
exigible_le: NaiveDate,
},
EcarteParLassemblee,
Exigible {
plancher_annuel: Decimal,
},
}Expand description
Où en est une ACP vis-à-vis de son obligation.
Variants§
ReceptionInconnue
La réception provisoire n’est pas encodée : on ne peut pas dater l’échéance, donc ni exiger ni dispenser.
Ce troisième état est délibéré. Répondre « pas encore exigible » dispenserait une ACP qui l’est peut-être depuis des années.
PasEncoreExigible
Le délai de cinq ans court encore.
EcarteParLassemblee
L’assemblée a renoncé aux quatre cinquièmes des voix.
Exigible
L’obligation est due, avec son plancher annuel.
Fields
§
plancher_annuel: DecimalTrait Implementations§
Source§impl Clone for StatutFondsReserve
impl Clone for StatutFondsReserve
Source§fn clone(&self) -> StatutFondsReserve
fn clone(&self) -> StatutFondsReserve
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 StatutFondsReserve
impl Debug for StatutFondsReserve
impl Eq for StatutFondsReserve
Source§impl PartialEq for StatutFondsReserve
impl PartialEq for StatutFondsReserve
Source§fn eq(&self, other: &StatutFondsReserve) -> bool
fn eq(&self, other: &StatutFondsReserve) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StatutFondsReserve
Auto Trait Implementations§
impl Freeze for StatutFondsReserve
impl RefUnwindSafe for StatutFondsReserve
impl Send for StatutFondsReserve
impl Sync for StatutFondsReserve
impl Unpin for StatutFondsReserve
impl UnsafeUnpin for StatutFondsReserve
impl UnwindSafe for StatutFondsReserve
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§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.