pub struct Properties<T: ArchiveType = SaveGameArchiveType>(pub IndexMap<PropertyKey, Property<T>>);Tuple Fields§
§0: IndexMap<PropertyKey, Property<T>>Implementations§
Source§impl<T: ArchiveType> Properties<T>
impl<T: ArchiveType> Properties<T>
Trait Implementations§
Source§impl<T: Clone + ArchiveType> Clone for Properties<T>
impl<T: Clone + ArchiveType> Clone for Properties<T>
Source§fn clone(&self) -> Properties<T>
fn clone(&self) -> Properties<T>
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<T: Debug + ArchiveType> Debug for Properties<T>
impl<T: Debug + ArchiveType> Debug for Properties<T>
Source§impl<T: Default + ArchiveType> Default for Properties<T>
impl<T: Default + ArchiveType> Default for Properties<T>
Source§fn default() -> Properties<T>
fn default() -> Properties<T>
Returns the “default value” for a type. Read more
Source§impl<K, T: ArchiveType> Index<K> for Properties<T>where
K: Into<PropertyKey>,
impl<K, T: ArchiveType> Index<K> for Properties<T>where
K: Into<PropertyKey>,
Source§impl<K, T: ArchiveType> IndexMut<K> for Properties<T>where
K: Into<PropertyKey>,
impl<K, T: ArchiveType> IndexMut<K> for Properties<T>where
K: Into<PropertyKey>,
Source§impl<'a, T: ArchiveType> IntoIterator for &'a Properties<T>
impl<'a, T: ArchiveType> IntoIterator for &'a Properties<T>
Source§type Item = <&'a IndexMap<PropertyKey, Property<T>> as IntoIterator>::Item
type Item = <&'a IndexMap<PropertyKey, Property<T>> as IntoIterator>::Item
The type of the elements being iterated over.
Source§type IntoIter = <&'a IndexMap<PropertyKey, Property<T>> as IntoIterator>::IntoIter
type IntoIter = <&'a IndexMap<PropertyKey, Property<T>> as IntoIterator>::IntoIter
Which kind of iterator are we turning this into?
Source§impl<T: PartialEq + ArchiveType> PartialEq for Properties<T>
impl<T: PartialEq + ArchiveType> PartialEq for Properties<T>
Source§impl<T: ArchiveType> Serialize for Properties<T>
impl<T: ArchiveType> Serialize for Properties<T>
impl<T: ArchiveType> StructuralPartialEq for Properties<T>
Auto Trait Implementations§
impl<T> Freeze for Properties<T>
impl<T> RefUnwindSafe for Properties<T>where
<T as ArchiveType>::SoftObjectPath: RefUnwindSafe,
<T as ArchiveType>::ObjectRef: RefUnwindSafe,
impl<T> Send for Properties<T>
impl<T> Sync for Properties<T>
impl<T> Unpin for Properties<T>
impl<T> UnwindSafe for Properties<T>
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