pub enum PersonnaliteJuridique {
Inexistante,
NonOpposableAuxTiers {
depuis: NaiveDate,
},
Acquise {
depuis: NaiveDate,
},
}Expand description
L’état de la personnalité juridique d’une ACP.
Variants§
Inexistante
Aucun lot n’a été cédé ni attribué : pas d’indivision, donc pas d’association. Un immeuble entier encore aux mains du promoteur.
NonOpposableAuxTiers
L’indivision est née mais les statuts ne sont pas transcrits.
L’ACP ne peut pas s’en prévaloir envers un tiers ; un tiers, lui, peut la lui opposer (Art. 3.86 § 2).
Acquise
Les deux conditions sont réunies.
Implementations§
Source§impl PersonnaliteJuridique
impl PersonnaliteJuridique
Sourcepub fn opposable_par_lacp(&self) -> bool
pub fn opposable_par_lacp(&self) -> bool
L’ACP peut-elle invoquer sa personnalité contre un tiers ?
C’est ce qui conditionne sa capacité à engager : signer un contrat, ouvrir un compte à son nom, agir en justice.
Sourcepub fn opposable_par_un_tiers(&self) -> bool
pub fn opposable_par_un_tiers(&self) -> bool
Un tiers peut-il l’opposer à l’ACP ?
Oui dès que l’indivision est née, transcription ou non. C’est la dissymétrie voulue par l’article : le retard de transcription ne profite pas à l’association qui l’a laissé traîner.
Trait Implementations§
Source§impl Clone for PersonnaliteJuridique
impl Clone for PersonnaliteJuridique
Source§fn clone(&self) -> PersonnaliteJuridique
fn clone(&self) -> PersonnaliteJuridique
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreimpl Copy for PersonnaliteJuridique
Source§impl Debug for PersonnaliteJuridique
impl Debug for PersonnaliteJuridique
Source§impl Display for PersonnaliteJuridique
impl Display for PersonnaliteJuridique
impl Eq for PersonnaliteJuridique
Source§impl PartialEq for PersonnaliteJuridique
impl PartialEq for PersonnaliteJuridique
Source§fn eq(&self, other: &PersonnaliteJuridique) -> bool
fn eq(&self, other: &PersonnaliteJuridique) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PersonnaliteJuridique
Auto Trait Implementations§
impl Freeze for PersonnaliteJuridique
impl RefUnwindSafe for PersonnaliteJuridique
impl Send for PersonnaliteJuridique
impl Sync for PersonnaliteJuridique
impl Unpin for PersonnaliteJuridique
impl UnsafeUnpin for PersonnaliteJuridique
impl UnwindSafe for PersonnaliteJuridique
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
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
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>
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>
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 more