pub struct PassiveGroup {
pub x: f64,
pub y: f64,
pub orbits: Vec<usize>,
pub is_proxy: Option<bool>,
pub proxy: Option<String>,
pub nodes: Vec<String>,
}Fields§
§x: f64§y: f64§orbits: Vec<usize>§is_proxy: Option<bool>§proxy: Option<String>§nodes: Vec<String>Trait Implementations§
Source§impl Clone for PassiveGroup
impl Clone for PassiveGroup
Source§fn clone(&self) -> PassiveGroup
fn clone(&self) -> PassiveGroup
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 PassiveGroup
impl Debug for PassiveGroup
Source§impl Default for PassiveGroup
impl Default for PassiveGroup
Source§fn default() -> PassiveGroup
fn default() -> PassiveGroup
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PassiveGroup
impl<'de> Deserialize<'de> for PassiveGroup
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 PassiveGroup
impl RefUnwindSafe for PassiveGroup
impl Send for PassiveGroup
impl Sync for PassiveGroup
impl Unpin for PassiveGroup
impl UnwindSafe for PassiveGroup
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