pub struct ProxyEntity {
pub proxy_entity_class_id: i32,
pub application_entity_class_id: i32,
pub graphics_data_size: i32,
pub graphics_data_string: Vec<Vec<u8>>,
pub entity_data_size: i32,
pub entity_data_string: Vec<Vec<u8>>,
pub object_id_1: Vec<String>,
pub object_id_2: Vec<String>,
pub object_id_3: Vec<String>,
pub object_id_4: Vec<String>,
pub terminator: i32,
pub original_data_format_is_dxf: bool,
/* private fields */
}Fields§
§proxy_entity_class_id: i32§application_entity_class_id: i32§graphics_data_size: i32§graphics_data_string: Vec<Vec<u8>>§entity_data_size: i32§entity_data_string: Vec<Vec<u8>>§object_id_1: Vec<String>§object_id_2: Vec<String>§object_id_3: Vec<String>§object_id_4: Vec<String>§terminator: i32§original_data_format_is_dxf: boolImplementations§
Source§impl ProxyEntity
impl ProxyEntity
pub fn object_drawing_format_version(&self) -> i32
pub fn set_object_drawing_format_version(&mut self, version: i32)
pub fn object_maintenance_release_version(&self) -> i32
pub fn set_object_mainenance_release_version(&mut self, version: i32)
Trait Implementations§
Source§impl Clone for ProxyEntity
impl Clone for ProxyEntity
Source§fn clone(&self) -> ProxyEntity
fn clone(&self) -> ProxyEntity
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 ProxyEntity
impl Debug for ProxyEntity
Source§impl Default for ProxyEntity
impl Default for ProxyEntity
Source§fn default() -> ProxyEntity
fn default() -> ProxyEntity
Returns the “default value” for a type. Read more
Source§impl PartialEq for ProxyEntity
impl PartialEq for ProxyEntity
impl StructuralPartialEq for ProxyEntity
Auto Trait Implementations§
impl Freeze for ProxyEntity
impl RefUnwindSafe for ProxyEntity
impl Send for ProxyEntity
impl Sync for ProxyEntity
impl Unpin for ProxyEntity
impl UnsafeUnpin for ProxyEntity
impl UnwindSafe for ProxyEntity
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