pub struct GroupPath {Show 13 fields
pub name: Option<String>,
pub default: bool,
pub weight: Option<f64>,
pub from: Option<Object>,
pub rise_from: Option<Object>,
pub fall_from: Option<Object>,
pub to: Option<Object>,
pub rise_to: Option<Object>,
pub fall_to: Option<Object>,
pub through: Option<Object>,
pub rise_through: Option<Object>,
pub fall_through: Option<Object>,
pub comment: Option<String>,
}Expand description
A type containing information of group_path
Fields§
§name: Option<String>§default: bool§weight: Option<f64>§from: Option<Object>§rise_from: Option<Object>§fall_from: Option<Object>§to: Option<Object>§rise_to: Option<Object>§fall_to: Option<Object>§through: Option<Object>§rise_through: Option<Object>§fall_through: Option<Object>§comment: Option<String>Trait Implementations§
impl StructuralPartialEq for GroupPath
Auto Trait Implementations§
impl Freeze for GroupPath
impl RefUnwindSafe for GroupPath
impl Send for GroupPath
impl Sync for GroupPath
impl Unpin for GroupPath
impl UnwindSafe for GroupPath
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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