1use std::fmt::Display; 2 3pub trait EvtxFieldView: Display { 4 fn maximum_display_length(&self) -> usize { 0 } 5 fn value_with_padding(&self) -> String { "".to_owned() } 6}