Struct Watcher

Source
pub struct Watcher<'a> { /* private fields */ }
Expand description

Namespace client for Watcher APIs

Implementations§

Source§

impl<'a> Watcher<'a>

Source

pub fn new(transport: &'a Transport) -> Self

Creates a new instance of Watcher

Source

pub fn transport(&self) -> &Transport

Source

pub fn ack_watch<'b>( &'a self, parts: WatcherAckWatchParts<'b>, ) -> WatcherAckWatch<'a, 'b, ()>

Watcher Ack Watch API

Acknowledges a watch, manually throttling the execution of the watch’s actions.

Source

pub fn activate_watch<'b>( &'a self, parts: WatcherActivateWatchParts<'b>, ) -> WatcherActivateWatch<'a, 'b, ()>

Watcher Activate Watch API

Activates a currently inactive watch.

Source

pub fn deactivate_watch<'b>( &'a self, parts: WatcherDeactivateWatchParts<'b>, ) -> WatcherDeactivateWatch<'a, 'b, ()>

Watcher Deactivate Watch API

Deactivates a currently active watch.

Source

pub fn delete_watch<'b>( &'a self, parts: WatcherDeleteWatchParts<'b>, ) -> WatcherDeleteWatch<'a, 'b>

Watcher Delete Watch API

Removes a watch from Watcher.

Source

pub fn execute_watch<'b>( &'a self, parts: WatcherExecuteWatchParts<'b>, ) -> WatcherExecuteWatch<'a, 'b, ()>

Watcher Execute Watch API

Forces the execution of a stored watch.

Source

pub fn get_settings<'b>(&'a self) -> WatcherGetSettings<'a, 'b>

Watcher Get Settings API

Retrieve settings for the watcher system index

Source

pub fn get_watch<'b>( &'a self, parts: WatcherGetWatchParts<'b>, ) -> WatcherGetWatch<'a, 'b>

Watcher Get Watch API

Retrieves a watch by its ID.

Source

pub fn put_watch<'b>( &'a self, parts: WatcherPutWatchParts<'b>, ) -> WatcherPutWatch<'a, 'b, ()>

Watcher Put Watch API

Creates a new watch, or updates an existing one.

Source

pub fn query_watches<'b>(&'a self) -> WatcherQueryWatches<'a, 'b, ()>

Watcher Query Watches API

Retrieves stored watches.

Source

pub fn start<'b>(&'a self) -> WatcherStart<'a, 'b, ()>

Watcher Start API

Starts Watcher if it is not already running.

Source

pub fn stats<'b>(&'a self, parts: WatcherStatsParts<'b>) -> WatcherStats<'a, 'b>

Watcher Stats API

Retrieves the current Watcher metrics.

Source

pub fn stop<'b>(&'a self) -> WatcherStop<'a, 'b, ()>

Watcher Stop API

Stops Watcher if it is running.

Source

pub fn update_settings<'b>(&'a self) -> WatcherUpdateSettings<'a, 'b, ()>

Watcher Update Settings API

Update settings for the watcher system index

Auto Trait Implementations§

§

impl<'a> Freeze for Watcher<'a>

§

impl<'a> !RefUnwindSafe for Watcher<'a>

§

impl<'a> Send for Watcher<'a>

§

impl<'a> Sync for Watcher<'a>

§

impl<'a> Unpin for Watcher<'a>

§

impl<'a> !UnwindSafe for Watcher<'a>

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> 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, 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<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
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<A, B, T> HttpServerConnExec<A, B> for T
where B: Body,

Source§

impl<T> MaybeSendSync for T