pub struct FormatRegistry { /* private fields */ }Expand description
Registry of available log formats.
For most use cases, prefer the global registry via register(),
get_format(), detect_format(), and list_formats().
Use FormatRegistry when you need an isolated registry (e.g., testing).
Implementations§
Source§impl FormatRegistry
impl FormatRegistry
Sourcepub fn list_subagent_sessions(&self, project: Option<&Path>) -> Vec<SessionFile>
pub fn list_subagent_sessions(&self, project: Option<&Path>) -> Vec<SessionFile>
List subagent sessions across all registered formats.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FormatRegistry
impl !RefUnwindSafe for FormatRegistry
impl Send for FormatRegistry
impl Sync for FormatRegistry
impl Unpin for FormatRegistry
impl UnsafeUnpin for FormatRegistry
impl !UnwindSafe for FormatRegistry
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