pub struct AttributeRecordSet {
pub entity_id: EntityId,
pub attribute_records: Vec<AttributeRecord>,
}Expand description
5.3.6.3
Fields§
§entity_id: EntityId§attribute_records: Vec<AttributeRecord>Implementations§
Source§impl AttributeRecordSet
impl AttributeRecordSet
pub fn new() -> Self
pub fn with_entity_id(self, entity_id: EntityId) -> Self
pub fn with_attribute_records( self, attribute_records: Vec<AttributeRecord>, ) -> Self
pub fn with_attribute_record(self, attribute_record: AttributeRecord) -> Self
Trait Implementations§
Source§impl Clone for AttributeRecordSet
impl Clone for AttributeRecordSet
Source§fn clone(&self) -> AttributeRecordSet
fn clone(&self) -> AttributeRecordSet
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 AttributeRecordSet
impl Debug for AttributeRecordSet
Source§impl Default for AttributeRecordSet
impl Default for AttributeRecordSet
Source§impl PartialEq for AttributeRecordSet
impl PartialEq for AttributeRecordSet
impl StructuralPartialEq for AttributeRecordSet
Auto Trait Implementations§
impl Freeze for AttributeRecordSet
impl RefUnwindSafe for AttributeRecordSet
impl Send for AttributeRecordSet
impl Sync for AttributeRecordSet
impl Unpin for AttributeRecordSet
impl UnwindSafe for AttributeRecordSet
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