Skip to main content

TopicPatternPath

Struct TopicPatternPath 

Source
pub struct TopicPatternPath { /* private fields */ }
Expand description

Parsed MQTT topic pattern with wildcard support

Implementations§

Source§

impl TopicPatternPath

Source

pub fn new_from_string( topic_pattern: impl Into<ArcStr>, cache_strategy: CacheStrategy, ) -> Result<TopicPatternPath, TopicPatternError>

Creates a topic pattern from string with optional caching.

Source

pub fn cache_strategy(&self) -> CacheStrategy

Get the cache strategy of this topic pattern.

Source

pub fn parameter_bindings(&self) -> Option<&SmallVec<[(ArcStr, ArcStr); 4]>>

Returns the current parameter bindings, if any.

Source

pub fn get_bound_value(&self, param_name: Option<&str>) -> Option<&ArcStr>

Returns the bound value for a named parameter, if it exists.

Source

pub fn mqtt_pattern(&self) -> ArcStr

Returns MQTT pattern with wildcards for broker subscription with bound parameters applied.

Source

pub fn resolve_bound_segments(&self) -> Vec<TopicPatternItem>

Resolves bound parameters into concrete segments

Returns segments with bound parameters replaced by their values. Unbound wildcards remain as wildcards.

Source

pub fn topic_pattern(&self) -> ArcStr

Returns original pattern with named parameters.

Source

pub fn is_empty(&self) -> bool

Returns true if pattern has no segments.

Source

pub fn contains_hash(&self) -> bool

Returns true if pattern contains multi-level wildcard (#).

Source

pub fn iter(&self) -> Iter<'_, TopicPatternItem>

Returns iterator over pattern segments.

Source

pub fn len(&self) -> usize

Returns number of segments in pattern.

Source

pub fn slice(&self) -> &[TopicPatternItem]

Returns pattern segments as slice.

Source

pub fn format_topic( &self, params: &[&dyn Display], ) -> Result<String, TopicFormatError>

Formats topic by substituting wildcards with provided parameters

Source

pub fn check_pattern_compatibility( &self, custom_topic: impl TryInto>, ) -> Result<TopicPatternPath, TopicPatternError>

Checks if the provided topic pattern is compatible with this one.

Static segments can differ, but wildcards must be identical in type, order, and names (if named).

Source

pub fn with_cache_strategy(&self, new_cache: CacheStrategy) -> TopicPatternPath

Create new pattern with different cache strategy

Source

pub fn bind_parameter( self, param_name: impl Into<ArcStr>, value: impl Into<ArcStr>, ) -> Result<TopicPatternPath, TopicPatternError>

Add value for topic wildcard parameter

Source

pub fn try_match( &self, topic: Arc<TopicPath>, ) -> Result<Arc<TopicMatch>, TopicMatchError>

Matches a topic against this pattern, extracting parameters.

Takes an Arc<TopicPath> so the topic can be shared cheaply: when matching ONE topic against MANY patterns (the hot path), build the Arc<TopicPath> once and pass Arc::clone(&topic) to each pattern to avoid re-parsing and re-allocating per match. For a single one-off match from a string, try_match_str is more convenient.

Source

pub fn try_match_str( &self, topic: impl Into<ArcStr>, ) -> Result<Arc<TopicMatch>, TopicMatchError>

Convenience wrapper around try_match for one-off matches: it builds the TopicPath and wraps it in an Arc for you.

Prefer try_match on the hot path (one topic, many patterns): calling this in a loop re-parses and re-allocates the topic every time.

Trait Implementations§

Source§

impl Clone for TopicPatternPath

Source§

fn clone(&self) -> TopicPatternPath

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for TopicPatternPath

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Display for TopicPatternPath

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl TryFrom<&str> for TopicPatternPath

Source§

type Error = TopicPatternError

The type returned in the event of a conversion error.
Source§

fn try_from( value: &str, ) -> Result<TopicPatternPath, <TopicPatternPath as TryFrom<&str>>::Error>

Performs the conversion.
Source§

impl TryFrom<ArcStr> for TopicPatternPath

Source§

type Error = TopicPatternError

The type returned in the event of a conversion error.
Source§

fn try_from( value: ArcStr, ) -> Result<TopicPatternPath, <TopicPatternPath as TryFrom<ArcStr>>::Error>

Performs the conversion.
Source§

impl TryFrom<String> for TopicPatternPath

Source§

type Error = TopicPatternError

The type returned in the event of a conversion error.
Source§

fn try_from( value: String, ) -> Result<TopicPatternPath, <TopicPatternPath as TryFrom<String>>::Error>

Performs the conversion.

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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more