Struct test_data_generation::engine::Fact[][src]

pub struct Fact {
    pub key: char,
    pub prior_key: Option<char>,
    pub next_key: Option<char>,
    pub pattern_placeholder: char,
    pub starts_with: u32,
    pub ends_with: u32,
    pub index_offset: u32,
}
Expand description

Represents a Fact for a character in a sample data entity that has been analyzed

Fields

key: char

the char that the fact defines (.e.g: ‘a’, ‘1’, ‘%’, etc.)

prior_key: Option<char>

the char that appears before (-1) the key in the entity

next_key: Option<char>

the char that appears after (+1) the key in the entity

pattern_placeholder: char

the PatternPlaceholder symbol that represents the type of key

starts_with: u32

indicates if the key is the first char in the entity (0=no, 1=yes)

ends_with: u32

indicates if the key is the last char in the entity (0=no, 1=yes)

index_offset: u32

indicates the number of positions from the index zero (where the char is located in the entity from the first position)

Implementations

Constructs a new Fact

Arguments
  • k: char - The char that the Fact represents (also known as the key).
  • pp: char - The char that represents the patter placeholder for the key.
  • sw: u32 - Indicates is the key is the first char in the entity. (0=no, 1=yes)
  • ew: u32 - Indicates is the key is the last char in the entity. (0=no, 1=yes)
  • idx_off: u32 - The index that represents the postion of the key from the beginning of the entity (zero based).
Example
extern crate test_data_generation;

use test_data_generation::engine::Fact;

fn main() {
	//fact created for the character 'r' in the string "word"
   	let mut fact =  Fact::new('r','c',0,0,2);
}

Constructs a new Fact from a serialized (JSON) string of the Fact object. This is used when restoring from “archive”

Arguments
  • serialized: &str - The JSON string that represents the archived Fact object.
Example
extern crate test_data_generation;

use test_data_generation::engine::Fact;

fn main() {
	let serialized = "{\"key\":\"r\",\"prior_key\":null,\"next_key\":null,\"pattern_placeholder\":\"c\",\"starts_with\":0,\"ends_with\":0,\"index_offset\":2}";
	let mut fact = Fact::from_serialized(&serialized);
    fact.set_prior_key('a');
	fact.set_next_key('e');

	assert_eq!(fact.pattern_placeholder, 'c');
}

This function converts the Fact to a serialize JSON string.

Example
extern crate test_data_generation;

use test_data_generation::engine::Fact;

fn main() {
	//fact created for the character 'r' in the string "word"
   	let mut fact =  Fact::new('r','c',0,0,2);

    println!("{}", fact.serialize());
    // {"key":"r","prior_key":null,"next_key":null,"pattern_placeholder":"c","starts_with":0,"ends_with":0,"index_offset":2}
}

This function sets the next key attribute to the specified char.

Arguments
  • nk: char - The character that represents the next character in the entity
Example
extern crate test_data_generation;

use test_data_generation::engine::Fact;

fn main() {
	//fact created for the character 'r' in the string "word"
   	let mut fact =  Fact::new('r','c',0,0,2);
    fact.set_next_key('d');
}

This function sets the prior key attribute to the specified char.

Arguments
  • pk: char - The character that represents the prior character in the entity
Example
extern crate test_data_generation;

use test_data_generation::engine::Fact;

fn main() {
	//fact created for the character 'r' in the string "word"
   	let mut fact =  Fact::new('r','c',0,0,2);
    fact.set_prior_key('o');
}

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.