pub struct ScheduleRecord {
pub allows_unloading: bool,
pub created_by_interrupt: bool,
pub rail: LuaEntity,
pub rail_direction: &'static str,
pub station: &'static str,
pub temporary: bool,
pub wait_conditions: &'static [LuaAny],
}Fields§
§allows_unloading: bool§created_by_interrupt: bool§rail: LuaEntity§rail_direction: &'static str§station: &'static str§temporary: bool§wait_conditions: &'static [LuaAny]Trait Implementations§
Source§impl Clone for ScheduleRecord
impl Clone for ScheduleRecord
Source§fn clone(&self) -> ScheduleRecord
fn clone(&self) -> ScheduleRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ScheduleRecord
Source§impl Debug for ScheduleRecord
impl Debug for ScheduleRecord
Source§impl Default for ScheduleRecord
impl Default for ScheduleRecord
Source§fn default() -> ScheduleRecord
fn default() -> ScheduleRecord
Returns the “default value” for a type. Read more
Source§impl PartialEq for ScheduleRecord
impl PartialEq for ScheduleRecord
impl StructuralPartialEq for ScheduleRecord
Auto Trait Implementations§
impl Freeze for ScheduleRecord
impl RefUnwindSafe for ScheduleRecord
impl Send for ScheduleRecord
impl Sync for ScheduleRecord
impl Unpin for ScheduleRecord
impl UnsafeUnpin for ScheduleRecord
impl UnwindSafe for ScheduleRecord
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