pub enum AttachPointType {
Origin,
Child,
Left,
Right,
Top,
Bottom,
Front,
Back,
Alignment,
Maximum,
Minimum,
}
Expand description
The type of the point “Origin” - the origin of a product, matches to “Child” “Child” - a (virtual) child can be placed, matches to “Origin” “Left” - L-R neighborship, matches to “Right” “Right” - L-R neighborship, matches to “Left” “Top” - vertical neighborship, matches to “Bottom” “Bottom” - vertical neighborship, matches to “Top” “Front” - front/back neighborship, matches to “Back” “Back” - front/back neighborship, matches to “Front” “Alignment” - auxiliary point to support alignments “Maximum” - marks the maximum of the bbox “Minimum” - marks the minimum of the bbox
Variants§
Trait Implementations§
Source§impl Clone for AttachPointType
impl Clone for AttachPointType
Source§fn clone(&self) -> AttachPointType
fn clone(&self) -> AttachPointType
Returns a copy 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 AttachPointType
impl Debug for AttachPointType
Source§impl<'de> Deserialize<'de> for AttachPointType
impl<'de> Deserialize<'de> for AttachPointType
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
Source§impl PartialEq for AttachPointType
impl PartialEq for AttachPointType
Source§impl Serialize for AttachPointType
impl Serialize for AttachPointType
impl StructuralPartialEq for AttachPointType
Auto Trait Implementations§
impl Freeze for AttachPointType
impl RefUnwindSafe for AttachPointType
impl Send for AttachPointType
impl Sync for AttachPointType
impl Unpin for AttachPointType
impl UnwindSafe for AttachPointType
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