1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
use crate::{
    protocol::VisitorMissingProtocol,
    walk::{Walk, WalkMut, WalkOnce},
    Visitor, Walker,
};

use super::{reference::RefWalker, reference_mut::MutWalker};

impl<'ctx> WalkOnce<'ctx> for &'ctx str {
    type Error = VisitorMissingProtocol;

    type Value = ();

    #[inline]
    fn walk_once(self, visitor: &mut dyn Visitor<'ctx>) -> Result<Self::Value, Self::Error> {
        self.walk(visitor)
    }
}

impl<'borrow, 'ctx> WalkMut<'borrow, 'ctx> for &'ctx str {
    #[inline]
    fn walk_mut(
        &'borrow mut self,
        visitor: &mut dyn Visitor<'ctx>,
    ) -> Result<Self::Value, Self::Error> {
        self.walk(visitor)
    }
}

impl<'borrow, 'ctx> Walk<'borrow, 'ctx> for &'ctx str {
    #[inline]
    fn walk(&'borrow self, visitor: &mut dyn Visitor<'ctx>) -> Result<Self::Value, Self::Error> {
        RefWalker::new(*self).walk_once(visitor)
    }
}

impl<'ctx> WalkOnce<'ctx> for &'ctx mut str {
    type Error = VisitorMissingProtocol;

    type Value = ();

    #[inline]
    fn walk_once(self, visitor: &mut dyn Visitor<'ctx>) -> Result<Self::Value, Self::Error> {
        MutWalker::new(self).walk_once(visitor)
    }
}

impl<'ctx> WalkMut<'ctx, 'ctx> for &'ctx mut str {
    #[inline]
    fn walk_mut(
        &'ctx mut self,
        visitor: &mut dyn Visitor<'ctx>,
    ) -> Result<Self::Value, Self::Error> {
        MutWalker::new(*self).walk_once(visitor)
    }
}

impl<'ctx> Walk<'ctx, 'ctx> for &'ctx mut str {
    #[inline]
    fn walk(&'ctx self, visitor: &mut dyn Visitor<'ctx>) -> Result<Self::Value, Self::Error> {
        RefWalker::new(*self).walk_once(visitor)
    }
}