···39394040impl NodeId {
4141 // This is okay since we are practically never reaching 2^32.
4242- #[allow(clippy::cast_possible_truncation)]
4242+ #[expect(clippy::cast_possible_truncation)]
4343 pub(crate) const fn new(index: usize) -> Self {
4444 Self {
4545 index: index as u32,
···164164 self.zettel_list = Some(zettel_list);
165165166166 Ok(())
167167- // what the fuck am i supposed to do here mannnn.
168167 }
169168170169 async fn update_views_from_zettel_list_selection(&mut self) -> Result<()> {
···9191 if let Ok(signal) = self.signal_rx.try_recv() {
9292 debug!("received signal in filaments: {signal}");
93939494- #[allow(clippy::single_match)]
9594 match signal {
9695 Signal::CreatedZettel { zid } => {
9796 block_on(async {