pub struct InternalField {
pub original: SiemField,
pub array: Box<PreStoredField<Vec<LogString>>>,
pub text: Box<PreStoredField<LogString>>,
pub nu64: Box<PreStoredField<u64>>,
pub ni64: Box<PreStoredField<i64>>,
pub nf64: Box<PreStoredField<f64>>,
pub ip: Box<PreStoredField<SiemIp>>,
}Fields§
§original: SiemField§array: Box<PreStoredField<Vec<LogString>>>§text: Box<PreStoredField<LogString>>§nu64: Box<PreStoredField<u64>>§ni64: Box<PreStoredField<i64>>§nf64: Box<PreStoredField<f64>>§ip: Box<PreStoredField<SiemIp>>Trait Implementations§
Source§impl Clone for InternalField
impl Clone for InternalField
Source§fn clone(&self) -> InternalField
fn clone(&self) -> InternalField
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InternalField
impl Debug for InternalField
Source§impl Default for InternalField
impl Default for InternalField
Source§fn default() -> InternalField
fn default() -> InternalField
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InternalField
impl<'de> Deserialize<'de> for InternalField
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<SiemField> for InternalField
impl From<SiemField> for InternalField
Auto Trait Implementations§
impl Freeze for InternalField
impl RefUnwindSafe for InternalField
impl Send for InternalField
impl Sync for InternalField
impl Unpin for InternalField
impl UnwindSafe for InternalField
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