pub struct KeyFloorEntry {
pub key_floor: i32,
pub player_condition_id: i32,
}Fields§
§key_floor: i32§player_condition_id: i32Trait Implementations§
Source§impl Clone for KeyFloorEntry
impl Clone for KeyFloorEntry
Source§fn clone(&self) -> KeyFloorEntry
fn clone(&self) -> KeyFloorEntry
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 KeyFloorEntry
impl Debug for KeyFloorEntry
Source§impl Default for KeyFloorEntry
impl Default for KeyFloorEntry
Source§fn default() -> KeyFloorEntry
fn default() -> KeyFloorEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KeyFloorEntry
impl<'de> Deserialize<'de> for KeyFloorEntry
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 KeyFloorEntry
impl JsonSchema for KeyFloorEntry
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(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for KeyFloorEntry
impl RefUnwindSafe for KeyFloorEntry
impl Send for KeyFloorEntry
impl Sync for KeyFloorEntry
impl Unpin for KeyFloorEntry
impl UnsafeUnpin for KeyFloorEntry
impl UnwindSafe for KeyFloorEntry
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