Struct JsonChecker

Source
pub struct JsonChecker {
    pub checker: *mut JsonCheckerRaw,
}

Fields§

§checker: *mut JsonCheckerRaw

Implementations§

Source§

impl JsonChecker

Source

pub fn new(depth: i32) -> Self

Examples found in repository?
examples/main.rs (line 8)
7fn main() {
8    let mut checker = JsonChecker::new(20);
9
10    initscr();
11    raw();
12
13    keypad(stdscr(), true);
14    // noecho();
15
16    printw("Enter a json string: ");
17
18    loop {
19        let next_char = getch();
20        if next_char == 0xa {
21            endwin();
22            break;
23        }
24
25        if checker.check_char(next_char) == 0 {
26            endwin();
27            panic!("JSON_checker_end: syntax error\n");
28        }
29    }
30
31    if checker.done() == 0 {
32        panic!("JSON_checker_end: syntax error\n");
33    } else {
34        println!("well-formed JSON text!")
35    }
36}
Source

pub fn check_char(&mut self, next_char: i32) -> i32

Examples found in repository?
examples/main.rs (line 25)
7fn main() {
8    let mut checker = JsonChecker::new(20);
9
10    initscr();
11    raw();
12
13    keypad(stdscr(), true);
14    // noecho();
15
16    printw("Enter a json string: ");
17
18    loop {
19        let next_char = getch();
20        if next_char == 0xa {
21            endwin();
22            break;
23        }
24
25        if checker.check_char(next_char) == 0 {
26            endwin();
27            panic!("JSON_checker_end: syntax error\n");
28        }
29    }
30
31    if checker.done() == 0 {
32        panic!("JSON_checker_end: syntax error\n");
33    } else {
34        println!("well-formed JSON text!")
35    }
36}
Source

pub fn done(&mut self) -> i32

Examples found in repository?
examples/main.rs (line 31)
7fn main() {
8    let mut checker = JsonChecker::new(20);
9
10    initscr();
11    raw();
12
13    keypad(stdscr(), true);
14    // noecho();
15
16    printw("Enter a json string: ");
17
18    loop {
19        let next_char = getch();
20        if next_char == 0xa {
21            endwin();
22            break;
23        }
24
25        if checker.check_char(next_char) == 0 {
26            endwin();
27            panic!("JSON_checker_end: syntax error\n");
28        }
29    }
30
31    if checker.done() == 0 {
32        panic!("JSON_checker_end: syntax error\n");
33    } else {
34        println!("well-formed JSON text!")
35    }
36}

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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 T
where 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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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

Source§

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.