pub struct EpisodeRow {
pub episode_id: String,
pub committed_at: String,
pub parent_episode_id: Option<String>,
}Expand description
One row of mimir_list_episodes’s response.
Fields§
§episode_id: StringEpisode symbol id (e.g. __ep_42) resolved against the
pipeline’s symbol table.
committed_at: StringISO-8601 commit time.
parent_episode_id: Option<String>Parent episode id, if registered.
Trait Implementations§
Source§impl Clone for EpisodeRow
impl Clone for EpisodeRow
Source§fn clone(&self) -> EpisodeRow
fn clone(&self) -> EpisodeRow
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 EpisodeRow
impl Debug for EpisodeRow
Source§impl<'de> Deserialize<'de> for EpisodeRow
impl<'de> Deserialize<'de> for EpisodeRow
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
Auto Trait Implementations§
impl Freeze for EpisodeRow
impl RefUnwindSafe for EpisodeRow
impl Send for EpisodeRow
impl Sync for EpisodeRow
impl Unpin for EpisodeRow
impl UnsafeUnpin for EpisodeRow
impl UnwindSafe for EpisodeRow
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