struct TableCache<'a> {
entries: Vec<TimetableInfo<'a>>,
timetable_entities: Option<&'a [ActualRouteEntry]>,
msg_sender: MessageWriter<'a, AdjustTimetableEntry>,
msg_open_ui: MessageWriter<'a, UiCommand>,
vehicle_set: Entity,
}Fields§
§entries: Vec<TimetableInfo<'a>>§timetable_entities: Option<&'a [ActualRouteEntry]>§msg_sender: MessageWriter<'a, AdjustTimetableEntry>§msg_open_ui: MessageWriter<'a, UiCommand>§vehicle_set: EntityImplementations§
Source§impl<'a> TableCache<'a>
impl<'a> TableCache<'a>
fn new( vehicle_schedule_cache: &'a VehicleScheduleCache, timetable_entries: &'a Query<'_, '_, (&TimetableEntry, &TimetableEntryCache, &ChildOf)>, names: &'a Query<'_, '_, (Entity, &Name)>, msg_sender: MessageWriter<'a, AdjustTimetableEntry>, msg_open_ui: MessageWriter<'a, UiCommand>, vehicle_set: Entity, ) -> Self
Trait Implementations§
Source§impl<'a> TableDelegate for TableCache<'a>
impl<'a> TableDelegate for TableCache<'a>
Source§fn header_cell_ui(&mut self, ui: &mut Ui, cell: &HeaderCellInfo)
fn header_cell_ui(&mut self, ui: &mut Ui, cell: &HeaderCellInfo)
The contents of a header cell in the table. Read more
Source§fn cell_ui(&mut self, ui: &mut Ui, cell: &CellInfo)
fn cell_ui(&mut self, ui: &mut Ui, cell: &CellInfo)
The contents of a cell in the table. Read more
§fn prepare(&mut self, _info: &PrefetchInfo)
fn prepare(&mut self, _info: &PrefetchInfo)
Called before any call to [
Self::cell_ui] to communicate the range of visible columns and rows. Read more§fn row_top_offset(&self, _ctx: &Context, _table_id: Id, row_nr: u64) -> f32
fn row_top_offset(&self, _ctx: &Context, _table_id: Id, row_nr: u64) -> f32
Compute the offset for the top of the given row. Read more
§fn default_row_height(&self) -> f32
fn default_row_height(&self) -> f32
Default row height. Read more
Auto Trait Implementations§
impl<'a> Freeze for TableCache<'a>
impl<'a> RefUnwindSafe for TableCache<'a>
impl<'a> Send for TableCache<'a>
impl<'a> Sync for TableCache<'a>
impl<'a> Unpin for TableCache<'a>
impl<'a> !UnwindSafe for TableCache<'a>
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSend for T
impl<T> DowncastSend for T
§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
§fn into_result(self) -> Result<T, RunSystemError>
fn into_result(self) -> Result<T, RunSystemError>
Converts this type into the system output type.