Struct kittycad_modeling_cmds::each_cmd::SendObject
source · pub struct SendObject {
pub object_id: Uuid,
pub front: bool,
}Expand description
Send object to front or back.
Fields§
§object_id: UuidWhich object is being changed.
front: boolBring to front = true, send to back = false.
Trait Implementations§
source§impl Clone for SendObject
impl Clone for SendObject
source§fn clone(&self) -> SendObject
fn clone(&self) -> SendObject
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 SendObject
impl Debug for SendObject
source§impl<'de> Deserialize<'de> for SendObject
impl<'de> Deserialize<'de> for SendObject
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl JsonSchema for SendObject
impl JsonSchema for SendObject
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moresource§impl<'de> ModelingCmdVariant<'de> for SendObject
impl<'de> ModelingCmdVariant<'de> for SendObject
Auto Trait Implementations§
impl RefUnwindSafe for SendObject
impl Send for SendObject
impl Sync for SendObject
impl Unpin for SendObject
impl UnwindSafe for SendObject
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