pub struct OpenClawFormation {
pub candidate_names: Vec<String>,
pub max_extra_loops: u32,
pub formation_variants: Vec<Formation>,
}Fields§
§candidate_names: Vec<String>§max_extra_loops: u32§formation_variants: Vec<Formation>Implementations§
Source§impl OpenClawFormation
impl OpenClawFormation
pub fn new( candidate_names: impl IntoIterator<Item = impl Into<String>>, max_extra_loops: u32, ) -> Self
pub fn with_variants(self, variants: Vec<Formation>) -> Self
Trait Implementations§
Source§impl Clone for OpenClawFormation
impl Clone for OpenClawFormation
Source§fn clone(&self) -> OpenClawFormation
fn clone(&self) -> OpenClawFormation
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 OpenClawFormation
impl Debug for OpenClawFormation
Source§impl<'de> Deserialize<'de> for OpenClawFormation
impl<'de> Deserialize<'de> for OpenClawFormation
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 OpenClawFormation
impl RefUnwindSafe for OpenClawFormation
impl Send for OpenClawFormation
impl Sync for OpenClawFormation
impl Unpin for OpenClawFormation
impl UnsafeUnpin for OpenClawFormation
impl UnwindSafe for OpenClawFormation
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