pub struct ScheduleRecord {
pub station: String,
pub wait_conditions: Vec<WaitCondition>,
}
Expand description
https://wiki.factorio.com/Blueprint_string_format#Schedule_Record_object
Fields§
§station: String
§wait_conditions: Vec<WaitCondition>
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 · 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 ScheduleRecord
impl Debug for ScheduleRecord
Source§impl<'de> Deserialize<'de> for ScheduleRecord
impl<'de> Deserialize<'de> for ScheduleRecord
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 PartialEq for ScheduleRecord
impl PartialEq for ScheduleRecord
Source§impl Serialize for ScheduleRecord
impl Serialize for ScheduleRecord
impl Eq 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 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