Enum paradox_typed_db::columns::ZoneTableColumn
source · pub enum ZoneTableColumn {
Show 27 variants
ZoneId,
LocStatus,
ZoneName,
ScriptId,
GhostdistanceMin,
Ghostdistance,
PopulationSoftCap,
PopulationHardCap,
DisplayDescription,
MapFolder,
SmashableMinDistance,
SmashableMaxDistance,
MixerProgram,
ClientPhysicsFramerate,
ServerPhysicsFramerate,
ZoneControlTemplate,
WidthInChunks,
HeightInChunks,
PetsAllowed,
Localize,
FZoneWeight,
Thumbnail,
PlayerLoseCoinsOnDeath,
DisableSaveLoc,
TeamRadius,
GateVersion,
MountsAllowed,
}
Expand description
Columns in table ZoneTable
See also: [`ZoneTable.html>
Variants§
ZoneId
Index of column zoneID
LocStatus
Index of column locStatus
ZoneName
Index of column zoneName
ScriptId
Index of column scriptID
GhostdistanceMin
Index of column ghostdistance_min
Ghostdistance
Index of column ghostdistance
PopulationSoftCap
Index of column population_soft_cap
PopulationHardCap
Index of column population_hard_cap
DisplayDescription
Index of column DisplayDescription
MapFolder
Index of column mapFolder
SmashableMinDistance
Index of column smashableMinDistance
SmashableMaxDistance
Index of column smashableMaxDistance
MixerProgram
Index of column mixerProgram
ClientPhysicsFramerate
Index of column clientPhysicsFramerate
ServerPhysicsFramerate
Index of column serverPhysicsFramerate
ZoneControlTemplate
Index of column zoneControlTemplate
WidthInChunks
Index of column widthInChunks
HeightInChunks
Index of column heightInChunks
PetsAllowed
Index of column petsAllowed
Localize
Index of column localize
FZoneWeight
Index of column fZoneWeight
Thumbnail
Index of column thumbnail
PlayerLoseCoinsOnDeath
Index of column PlayerLoseCoinsOnDeath
DisableSaveLoc
Index of column disableSaveLoc
TeamRadius
Index of column teamRadius
GateVersion
Index of column gate_version
MountsAllowed
Index of column mountsAllowed
Trait Implementations§
source§impl Clone for ZoneTableColumn
impl Clone for ZoneTableColumn
source§fn clone(&self) -> ZoneTableColumn
fn clone(&self) -> ZoneTableColumn
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ZoneTableColumn
impl Debug for ZoneTableColumn
source§impl Hash for ZoneTableColumn
impl Hash for ZoneTableColumn
source§impl Ord for ZoneTableColumn
impl Ord for ZoneTableColumn
source§fn cmp(&self, other: &ZoneTableColumn) -> Ordering
fn cmp(&self, other: &ZoneTableColumn) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
source§impl PartialEq<ZoneTableColumn> for ZoneTableColumn
impl PartialEq<ZoneTableColumn> for ZoneTableColumn
source§fn eq(&self, other: &ZoneTableColumn) -> bool
fn eq(&self, other: &ZoneTableColumn) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<ZoneTableColumn> for ZoneTableColumn
impl PartialOrd<ZoneTableColumn> for ZoneTableColumn
source§fn partial_cmp(&self, other: &ZoneTableColumn) -> Option<Ordering>
fn partial_cmp(&self, other: &ZoneTableColumn) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more