pub struct File {
    pub file_path: PathBuf,
    pub file_content: Vec<String>,
    pub full_read: bool,
    pub available: bool,
    /* private fields */
}
Expand description

Data structure to store the file.

Fields§

§file_path: PathBuf

Path of the file.

§file_content: Vec<String>

Content of the file.

§full_read: bool

Full read status of the file.

§available: bool

Available

Implementations§

Source§

impl File

Source

pub fn new(file_path: PathBuf, file_content: String) -> Self

Create a new file.

Source

pub fn new_file_content(file_path: PathBuf, file_content: String) -> Self

set file mode using a path and content

Source

pub fn change_nb_read(&mut self, toread: usize)

To update the number of log to read per batch

Source

pub fn process(&mut self) -> (Vec<Trace>, Vec<TramexError>)

To process the file and parse a batch of log

Source

pub fn process_string( lines: &[String], nb_to_read: usize, ix: &mut usize, ) -> (Vec<Trace>, Vec<TramexError>)

To process a string passed in argument, with index and batch to read

Trait Implementations§

Source§

impl Clone for File

Source§

fn clone(&self) -> File

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for File

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for File

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl InterfaceTrait for File

Source§

fn get_more_data( &mut self, _layer_list: Layers, data: &mut Data, ) -> Result<(), Vec<TramexError>>

Get more data Read more
Source§

fn close(&mut self) -> Result<(), TramexError>

Try to close the interface Read more

Auto Trait Implementations§

§

impl Freeze for File

§

impl RefUnwindSafe for File

§

impl Send for File

§

impl Sync for File

§

impl Unpin for File

§

impl UnwindSafe for File

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V