pub struct CompressedEventLog {
pub log: EventLog,
}Fields§
§log: EventLogTrait Implementations§
Source§impl Exportable for CompressedEventLog
impl Exportable for CompressedEventLog
Source§impl From<CompressedEventLog> for DeterministicFiniteAutomaton
impl From<CompressedEventLog> for DeterministicFiniteAutomaton
Source§fn from(value: CompressedEventLog) -> Self
fn from(value: CompressedEventLog) -> Self
Converts to this type from the input type.
Source§impl From<CompressedEventLog> for EventLog
impl From<CompressedEventLog> for EventLog
Source§fn from(value: CompressedEventLog) -> Self
fn from(value: CompressedEventLog) -> Self
Converts to this type from the input type.
Source§impl From<CompressedEventLog> for FiniteLanguage
impl From<CompressedEventLog> for FiniteLanguage
Source§fn from(value: CompressedEventLog) -> Self
fn from(value: CompressedEventLog) -> Self
Converts to this type from the input type.
Source§impl From<CompressedEventLog> for FiniteStochasticLanguage
impl From<CompressedEventLog> for FiniteStochasticLanguage
Source§fn from(value: CompressedEventLog) -> Self
fn from(value: CompressedEventLog) -> Self
Converts to this type from the input type.
Source§impl From<CompressedEventLog> for StochasticDeterministicFiniteAutomaton
impl From<CompressedEventLog> for StochasticDeterministicFiniteAutomaton
Source§fn from(value: CompressedEventLog) -> Self
fn from(value: CompressedEventLog) -> Self
Converts to this type from the input type.
Source§impl From<CompressedEventLog> for StochasticNondeterministicFiniteAutomaton
impl From<CompressedEventLog> for StochasticNondeterministicFiniteAutomaton
Source§fn from(value: CompressedEventLog) -> Self
fn from(value: CompressedEventLog) -> Self
Converts to this type from the input type.
Source§impl From<CompressedEventLogTraceAttributes> for CompressedEventLog
impl From<CompressedEventLogTraceAttributes> for CompressedEventLog
Source§fn from(value: CompressedEventLogTraceAttributes) -> Self
fn from(value: CompressedEventLogTraceAttributes) -> Self
Converts to this type from the input type.
Source§impl From<CompressedEventLogXes> for CompressedEventLog
impl From<CompressedEventLogXes> for CompressedEventLog
Source§fn from(value: CompressedEventLogXes) -> Self
fn from(value: CompressedEventLogXes) -> Self
Converts to this type from the input type.
Source§impl From<EventLog> for CompressedEventLog
impl From<EventLog> for CompressedEventLog
Source§impl From<EventLogTraceAttributes> for CompressedEventLog
impl From<EventLogTraceAttributes> for CompressedEventLog
Source§fn from(value: EventLogTraceAttributes) -> Self
fn from(value: EventLogTraceAttributes) -> Self
Converts to this type from the input type.
Source§impl From<EventLogXes> for CompressedEventLog
impl From<EventLogXes> for CompressedEventLog
Source§fn from(value: EventLogXes) -> Self
fn from(value: EventLogXes) -> Self
Converts to this type from the input type.
Source§impl FromStr for CompressedEventLog
impl FromStr for CompressedEventLog
Source§impl HasActivityKey for CompressedEventLog
impl HasActivityKey for CompressedEventLog
fn activity_key(&self) -> &ActivityKey
fn activity_key_mut(&mut self) -> &mut ActivityKey
Source§impl Importable for CompressedEventLog
impl Importable for CompressedEventLog
Source§const FILE_FORMAT_SPECIFICATION_LATEX: &str = CompressedEventLogXes::FILE_FORMAT_SPECIFICATION_LATEX
const FILE_FORMAT_SPECIFICATION_LATEX: &str = CompressedEventLogXes::FILE_FORMAT_SPECIFICATION_LATEX
A latex piece that describes the file format.
Source§const IMPORTER_PARAMETERS: &[ImporterParameter] = EventLogXes::IMPORTER_PARAMETERS
const IMPORTER_PARAMETERS: &[ImporterParameter] = EventLogXes::IMPORTER_PARAMETERS
Defines the parameters that the importer expects.
fn import_as_object( reader: &mut dyn BufRead, parameter_values: &ImporterParameterValues, ) -> Result<EbiObject>
Source§fn import(
reader: &mut dyn BufRead,
parameter_values: &ImporterParameterValues,
) -> Result<Self>where
Self: Sized,
fn import(
reader: &mut dyn BufRead,
parameter_values: &ImporterParameterValues,
) -> Result<Self>where
Self: Sized,
Attempts to import from the reader.
The parameter_values must match the order given in
IMPORTER_PARAMETERS.fn default_importer_parameter_values() -> ImporterParameterValues
Source§impl TranslateActivityKey for CompressedEventLog
impl TranslateActivityKey for CompressedEventLog
Source§fn translate_using_activity_key(&mut self, to_activity_key: &mut ActivityKey)
fn translate_using_activity_key(&mut self, to_activity_key: &mut ActivityKey)
Change the activity key of this object, by translating all mentions of activities to the new activity key (which will be updated with activity labels it did not have yet.).
This is a potentially expensive operation. If only a part of the activities will be used, then consider using an ActivityKeyTranslator directly.
The activity key of this object will be updated too, so the activity keys will be equivalent afterwards.
Source§impl TryFrom<CompressedEventLog> for EventLogCsv
impl TryFrom<CompressedEventLog> for EventLogCsv
Source§impl TryFrom<EventLogCsv> for CompressedEventLog
impl TryFrom<EventLogCsv> for CompressedEventLog
Auto Trait Implementations§
impl Freeze for CompressedEventLog
impl RefUnwindSafe for CompressedEventLog
impl Send for CompressedEventLog
impl Sync for CompressedEventLog
impl Unpin for CompressedEventLog
impl UnsafeUnpin for CompressedEventLog
impl UnwindSafe for CompressedEventLog
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
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 moreSource§impl<T, U> OverflowingInto<U> for Twhere
U: OverflowingFrom<T>,
impl<T, U> OverflowingInto<U> for Twhere
U: OverflowingFrom<T>,
fn overflowing_into(self) -> (U, bool)
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T, U> RoundingInto<U> for Twhere
U: RoundingFrom<T>,
impl<T, U> RoundingInto<U> for Twhere
U: RoundingFrom<T>,
fn rounding_into(self, rm: RoundingMode) -> (U, Ordering)
Source§impl<T, U> SaturatingInto<U> for Twhere
U: SaturatingFrom<T>,
impl<T, U> SaturatingInto<U> for Twhere
U: SaturatingFrom<T>,
fn saturating_into(self) -> U
Source§impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
Source§fn to_owned_obj(&self, data: FontData<'_>) -> U
fn to_owned_obj(&self, data: FontData<'_>) -> U
Convert this type into
T, using the provided data to resolve any offsets.