pub struct ArrieresARetenir {
pub charges_ordinaires: Decimal,
pub charges_extraordinaires: Decimal,
pub frais_de_recuperation: Decimal,
pub frais_de_transmission: Decimal,
}Expand description
Ce que le notaire doit retenir, poste par poste.
Les quatre postes sont séparés parce que trois d’entre eux sont régulièrement oubliés, et qu’un total opaque ne permet ni de le vérifier ni de le contester.
Fields§
§charges_ordinaires: DecimalArriérés de charges ordinaires.
charges_extraordinaires: DecimalArriérés de charges extraordinaires.
frais_de_recuperation: DecimalFrais de récupération judiciaire et extrajudiciaire : recommandés, huissier, avocat. Poste le plus souvent omis.
frais_de_transmission: DecimalFrais de transmission des informations de l’Art. 3.94, §§ 1er à 3 — ceux que le syndic avance et que le vendeur doit.
Implementations§
Trait Implementations§
Source§impl Clone for ArrieresARetenir
impl Clone for ArrieresARetenir
Source§fn clone(&self) -> ArrieresARetenir
fn clone(&self) -> ArrieresARetenir
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 ArrieresARetenir
impl Debug for ArrieresARetenir
Source§impl Default for ArrieresARetenir
impl Default for ArrieresARetenir
Source§fn default() -> ArrieresARetenir
fn default() -> ArrieresARetenir
Returns the “default value” for a type. Read more
Source§impl PartialEq for ArrieresARetenir
impl PartialEq for ArrieresARetenir
Source§fn eq(&self, other: &ArrieresARetenir) -> bool
fn eq(&self, other: &ArrieresARetenir) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ArrieresARetenir
Auto Trait Implementations§
impl Freeze for ArrieresARetenir
impl RefUnwindSafe for ArrieresARetenir
impl Send for ArrieresARetenir
impl Sync for ArrieresARetenir
impl Unpin for ArrieresARetenir
impl UnsafeUnpin for ArrieresARetenir
impl UnwindSafe for ArrieresARetenir
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.