pub struct ParticipantPolicy {
pub external_agents_allowed: bool,
}Expand description
Policy controlling which agents may participate in a project.
Fields§
§external_agents_allowed: boolWhether agents outside the local node may join.
Trait Implementations§
Source§impl Clone for ParticipantPolicy
impl Clone for ParticipantPolicy
Source§fn clone(&self) -> ParticipantPolicy
fn clone(&self) -> ParticipantPolicy
Returns a duplicate of the value. Read more
1.0.0 · 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 ParticipantPolicy
impl Debug for ParticipantPolicy
Source§impl<'de> Deserialize<'de> for ParticipantPolicy
impl<'de> Deserialize<'de> for ParticipantPolicy
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ParticipantPolicy
impl RefUnwindSafe for ParticipantPolicy
impl Send for ParticipantPolicy
impl Sync for ParticipantPolicy
impl Unpin for ParticipantPolicy
impl UnsafeUnpin for ParticipantPolicy
impl UnwindSafe for ParticipantPolicy
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