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: &Vec<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 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 Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. 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 Twhere 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

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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 Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> ErasedDestructor for Twhere T: 'static,

§

impl<T> MaybeSendSync for T