pub struct LinkPattern { /* private fields */ }Expand description
A parsed link pattern. Nodes can be literals (kind:cat), whole-node
variables ($node), or prefix variables (assignee:$person).
Implementations§
Source§impl LinkPattern
impl LinkPattern
pub fn parse(text: &str) -> Result<Self, SubstitutionRuleError>
pub fn literal_pair(&self) -> Option<(&str, &str)>
Trait Implementations§
Source§impl Clone for LinkPattern
impl Clone for LinkPattern
Source§fn clone(&self) -> LinkPattern
fn clone(&self) -> LinkPattern
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LinkPattern
impl Debug for LinkPattern
Source§impl Display for LinkPattern
impl Display for LinkPattern
impl Eq for LinkPattern
Source§impl PartialEq for LinkPattern
impl PartialEq for LinkPattern
impl StructuralPartialEq for LinkPattern
Auto Trait Implementations§
impl Freeze for LinkPattern
impl RefUnwindSafe for LinkPattern
impl Send for LinkPattern
impl Sync for LinkPattern
impl Unpin for LinkPattern
impl UnsafeUnpin for LinkPattern
impl UnwindSafe for LinkPattern
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.