pub struct ActiveObjectRemoveAddSpec {
pub removed_object_ids: Vec<u16>,
pub added_objects: Vec<AddedObject>,
}
Fields§
§removed_object_ids: Vec<u16>
§added_objects: Vec<AddedObject>
Trait Implementations§
Source§impl Clone for ActiveObjectRemoveAddSpec
impl Clone for ActiveObjectRemoveAddSpec
Source§fn clone(&self) -> ActiveObjectRemoveAddSpec
fn clone(&self) -> ActiveObjectRemoveAddSpec
Returns a copy 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 ActiveObjectRemoveAddSpec
impl Debug for ActiveObjectRemoveAddSpec
Source§impl Deserialize for ActiveObjectRemoveAddSpec
impl Deserialize for ActiveObjectRemoveAddSpec
Source§type Output = ActiveObjectRemoveAddSpec
type Output = ActiveObjectRemoveAddSpec
Output should be Self, except for wrapper types.
fn deserialize(deser: &mut Deserializer<'_>) -> DeserializeResult<Self>
Source§impl From<ActiveObjectRemoveAddSpec> for ToClientCommand
impl From<ActiveObjectRemoveAddSpec> for ToClientCommand
Source§fn from(value: ActiveObjectRemoveAddSpec) -> Self
fn from(value: ActiveObjectRemoveAddSpec) -> Self
Converts to this type from the input type.
Source§impl Serialize for ActiveObjectRemoveAddSpec
impl Serialize for ActiveObjectRemoveAddSpec
type Input = ActiveObjectRemoveAddSpec
fn serialize<S: Serializer>(value: &Self::Input, ser: &mut S) -> SerializeResult
impl StructuralPartialEq for ActiveObjectRemoveAddSpec
Auto Trait Implementations§
impl Freeze for ActiveObjectRemoveAddSpec
impl RefUnwindSafe for ActiveObjectRemoveAddSpec
impl Send for ActiveObjectRemoveAddSpec
impl Sync for ActiveObjectRemoveAddSpec
impl Unpin for ActiveObjectRemoveAddSpec
impl UnwindSafe for ActiveObjectRemoveAddSpec
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