pub enum Entities {
LWPOLYLINE(usize, usize, Vec<(f64, f64)>),
LINE(usize, usize, (f64, f64, f64), (f64, f64, f64)),
MTEXT(usize, usize, (f64, f64, f64), String),
CaxaDraftFormatedTxt(usize, usize, String),
}Expand description
实体
Variants§
LWPOLYLINE(usize, usize, Vec<(f64, f64)>)
二维几何图形 1:标识 2:图层 3:线段组
LINE(usize, usize, (f64, f64, f64), (f64, f64, f64))
线 1:标识 2:图层 3:开始坐标 4:结束坐标
MTEXT(usize, usize, (f64, f64, f64), String)
CaxaDraftFormatedTxt(usize, usize, String)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Entities
impl RefUnwindSafe for Entities
impl Send for Entities
impl Sync for Entities
impl Unpin for Entities
impl UnwindSafe for Entities
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> 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