pub enum LienAvecLeSyndic {
LeSyndic,
Prepose,
Parente {
degre: u8,
},
EntrepriseDetenue,
EntrepriseDirigee,
EntrepriseEmployeuse,
ActionnaireDuSyndic,
}Expand description
La nature du lien entre le cocontractant et le syndic.
Variants§
LeSyndic
Le syndic lui-même.
Prepose
Un préposé du syndic.
Parente
Parent ou allié jusqu’au troisième degré, du syndic ou de son conjoint.
Le degré est porté pour l’audit : au-delà du troisième, il n’y a plus de lien au sens de l’article.
EntrepriseDetenue
Une entreprise dont une des personnes ci-dessus est propriétaire ou détient une participation, quel qu’en soit le montant.
L’article ne fixe aucun seuil : détenir une part suffit. Ne pas en inventer un.
EntrepriseDirigee
Une entreprise dans laquelle une de ces personnes exerce des fonctions de direction ou de contrôle.
Ne rien posséder ne suffit donc pas à échapper à l’obligation : un syndic administrateur d’une société de nettoyage y est soumis.
EntrepriseEmployeuse
Une entreprise dont une de ces personnes est salariée ou préposée.
Le cas le plus discret des trois, et il est visé par le texte au même titre que les deux autres.
ActionnaireDuSyndic
Une entreprise qui détient, directement ou indirectement, une participation dans le capital du syndic personne morale.
Le lien en sens inverse, que la fin du 13° vise expressément. « Indirectement » couvre les holdings : s’arrêter à la détention directe laisserait passer l’interposition d’une société.
Implementations§
Source§impl LienAvecLeSyndic
impl LienAvecLeSyndic
Sourcepub fn exige_autorisation(&self) -> bool
pub fn exige_autorisation(&self) -> bool
Ce lien déclenche-t-il l’obligation d’autorisation préalable ?
La parenté ne compte que jusqu’au troisième degré inclus. Au-delà, l’article ne s’applique pas — et l’étendre serait inventer une règle.
Trait Implementations§
Source§impl Clone for LienAvecLeSyndic
impl Clone for LienAvecLeSyndic
Source§fn clone(&self) -> LienAvecLeSyndic
fn clone(&self) -> LienAvecLeSyndic
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 LienAvecLeSyndic
Source§impl Debug for LienAvecLeSyndic
impl Debug for LienAvecLeSyndic
Source§impl Display for LienAvecLeSyndic
impl Display for LienAvecLeSyndic
impl Eq for LienAvecLeSyndic
Source§impl PartialEq for LienAvecLeSyndic
impl PartialEq for LienAvecLeSyndic
Source§fn eq(&self, other: &LienAvecLeSyndic) -> bool
fn eq(&self, other: &LienAvecLeSyndic) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LienAvecLeSyndic
Auto Trait Implementations§
impl Freeze for LienAvecLeSyndic
impl RefUnwindSafe for LienAvecLeSyndic
impl Send for LienAvecLeSyndic
impl Sync for LienAvecLeSyndic
impl Unpin for LienAvecLeSyndic
impl UnsafeUnpin for LienAvecLeSyndic
impl UnwindSafe for LienAvecLeSyndic
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