Struct proptest::char::CharValueTree [−][src]
pub struct CharValueTree { /* fields omitted */ }The ValueTree corresponding to CharStrategy.
Trait Implementations
impl Debug for CharValueTree[src]
impl Debug for CharValueTreefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for CharValueTree[src]
impl Clone for CharValueTreefn clone(&self) -> CharValueTree[src]
fn clone(&self) -> CharValueTreeReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Copy for CharValueTree[src]
impl Copy for CharValueTreeimpl ValueTree for CharValueTree[src]
impl ValueTree for CharValueTreetype Value = char
The type of the value produced by this ValueTree.
fn current(&self) -> char[src]
fn current(&self) -> charReturns the current value.
fn simplify(&mut self) -> bool[src]
fn simplify(&mut self) -> boolAttempts to simplify the current value. Notionally, this sets the "high" value to the current value, and the current value to a "halfway point" between high and low, rounding towards low. Read more
fn complicate(&mut self) -> bool[src]
fn complicate(&mut self) -> boolAttempts to partially undo the last simplification. Notionally, this sets the "low" value to one plus the current value, and the current value to a "halfway point" between high and the new low, rounding towards low. Read more
Auto Trait Implementations
impl Send for CharValueTree
impl Send for CharValueTreeimpl Sync for CharValueTree
impl Sync for CharValueTree