You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 3, 2023. It is now read-only.
Instead of implementing Iterator for SnapshotEntries, it's better to implement IntoIterator for SnapshotEntries, &SnapshotEntries, &mut SnapshotEntries. This allows to add to SnapshotEntries these methods independently:
entry(&self, id: EntryId) -> Entry;
into_display(self) -> SnapshotEntriesDisplay.
The text was updated successfully, but these errors were encountered:
Instead of implementing
Iterator
forSnapshotEntries
, it's better to implementIntoIterator
forSnapshotEntries
,&SnapshotEntries
,&mut SnapshotEntries
. This allows to add toSnapshotEntries
these methods independently:entry(&self, id: EntryId) -> Entry
;into_display(self) -> SnapshotEntriesDisplay
.The text was updated successfully, but these errors were encountered: