pub struct ObjectPropertyConnection {
pub dest: u64,
pub property: String,
}Expand description
Endpoint for OP / PP rows: destination object id and property name on that object.
For PP map keys, Assimp/FBX use the source side: ObjectPropertyConnection::dest is
the source object id and property the source property name; values are the actual
destination links. See crate::Object::pp_targets.
Fields§
§dest: u64§property: StringTrait Implementations§
Source§impl Clone for ObjectPropertyConnection
impl Clone for ObjectPropertyConnection
Source§fn clone(&self) -> ObjectPropertyConnection
fn clone(&self) -> ObjectPropertyConnection
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 ObjectPropertyConnection
impl Debug for ObjectPropertyConnection
Source§impl Hash for ObjectPropertyConnection
impl Hash for ObjectPropertyConnection
Source§impl PartialEq for ObjectPropertyConnection
impl PartialEq for ObjectPropertyConnection
impl Eq for ObjectPropertyConnection
impl StructuralPartialEq for ObjectPropertyConnection
Auto Trait Implementations§
impl Freeze for ObjectPropertyConnection
impl RefUnwindSafe for ObjectPropertyConnection
impl Send for ObjectPropertyConnection
impl Sync for ObjectPropertyConnection
impl Unpin for ObjectPropertyConnection
impl UnsafeUnpin for ObjectPropertyConnection
impl UnwindSafe for ObjectPropertyConnection
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