Enum libreda_db::layout::prelude::PathEndType
source · [−]pub enum PathEndType<T> {
Flat,
Extended(T, T),
Round,
}
Expand description
Encoding for the type of the beginning and end of the path.
Variants
Flat
Beginning and end of path are not extended.
Extended(T, T)
Define the extension length at the beginning and at the end of the path.
Round
Path ends are round (approximately semi-circles).
Trait Implementations
sourceimpl<T> Clone for PathEndType<T> where
T: Clone,
impl<T> Clone for PathEndType<T> where
T: Clone,
sourcefn clone(&self) -> PathEndType<T>
fn clone(&self) -> PathEndType<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<T> Debug for PathEndType<T> where
T: Debug,
impl<T> Debug for PathEndType<T> where
T: Debug,
sourceimpl<'de, T> Deserialize<'de> for PathEndType<T> where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for PathEndType<T> where
T: Deserialize<'de>,
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<PathEndType<T>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<PathEndType<T>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<T> Hash for PathEndType<T> where
T: Hash,
impl<T> Hash for PathEndType<T> where
T: Hash,
sourceimpl<T> PartialEq<PathEndType<T>> for PathEndType<T> where
T: PartialEq<T>,
impl<T> PartialEq<PathEndType<T>> for PathEndType<T> where
T: PartialEq<T>,
sourcefn eq(&self, other: &PathEndType<T>) -> bool
fn eq(&self, other: &PathEndType<T>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &PathEndType<T>) -> bool
fn ne(&self, other: &PathEndType<T>) -> bool
This method tests for !=
.
sourceimpl<T> Serialize for PathEndType<T> where
T: Serialize,
impl<T> Serialize for PathEndType<T> where
T: Serialize,
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl<T> Copy for PathEndType<T> where
T: Copy,
impl<T> Eq for PathEndType<T> where
T: Eq,
impl<T> StructuralEq for PathEndType<T>
impl<T> StructuralPartialEq for PathEndType<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for PathEndType<T> where
T: RefUnwindSafe,
impl<T> Send for PathEndType<T> where
T: Send,
impl<T> Sync for PathEndType<T> where
T: Sync,
impl<T> Unpin for PathEndType<T> where
T: Unpin,
impl<T> UnwindSafe for PathEndType<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more