pub struct LocalClient { /* private fields */ }Expand description
A minimal client for this node’s in-process LocalAPI HTTP server (Go
tsnet.Server.LocalClient() → *local.Client), obtained from Server::local_client.
It authenticates every request with the loopback’s LocalAPI credential and speaks plain HTTP to
127.0.0.1. LocalAPI responses are JSON/text, decoded here as UTF-8 str.
Implementations§
Source§impl LocalClient
impl LocalClient
Sourcepub fn status<'p>(&self, py: Python<'p>) -> PyResult<Bound<'p, PyAny>>
pub fn status<'p>(&self, py: Python<'p>) -> PyResult<Bound<'p, PyAny>>
GET /localapi/v0/status — the node + peer status as a JSON str (Go
LocalClient().Status, over the loopback). Raises if the server answers non-200.
Sourcepub fn get<'p>(
&self,
py: Python<'p>,
path: String,
) -> PyResult<Bound<'p, PyAny>>
pub fn get<'p>( &self, py: Python<'p>, path: String, ) -> PyResult<Bound<'p, PyAny>>
Perform an authenticated GET against an arbitrary LocalAPI path (e.g.
"/localapi/v0/status"), returning (http_status_code, body) where body is the response
decoded as a UTF-8 str.
Sourcepub fn address(&self) -> String
pub fn address(&self) -> String
The 127.0.0.1:port address of the LocalAPI HTTP server this client talks to.
Sourcepub fn credential(&self) -> String
pub fn credential(&self) -> String
The LocalAPI credential (HTTP Basic-auth password) this client sends.
Trait Implementations§
impl DerefToPyAny for LocalClient
impl ExtractPyClassWithClone for LocalClient
Source§impl<'py> IntoPyObject<'py> for LocalClient
impl<'py> IntoPyObject<'py> for LocalClient
Source§type Target = LocalClient
type Target = LocalClient
Source§type Output = Bound<'py, <LocalClient as IntoPyObject<'py>>::Target>
type Output = Bound<'py, <LocalClient as IntoPyObject<'py>>::Target>
Source§fn into_pyobject(
self,
py: Python<'py>,
) -> Result<<Self as IntoPyObject<'_>>::Output, <Self as IntoPyObject<'_>>::Error>
fn into_pyobject( self, py: Python<'py>, ) -> Result<<Self as IntoPyObject<'_>>::Output, <Self as IntoPyObject<'_>>::Error>
Source§impl PyClass for LocalClient
impl PyClass for LocalClient
Source§impl PyClassImpl for LocalClient
impl PyClassImpl for LocalClient
Source§const IS_BASETYPE: bool = false
const IS_BASETYPE: bool = false
Source§const IS_SUBCLASS: bool = false
const IS_SUBCLASS: bool = false
Source§const IS_MAPPING: bool = false
const IS_MAPPING: bool = false
Source§const IS_SEQUENCE: bool = false
const IS_SEQUENCE: bool = false
Source§const IS_IMMUTABLE_TYPE: bool = false
const IS_IMMUTABLE_TYPE: bool = false
Source§const RAW_DOC: &'static CStr = /// A minimal client for this node's in-process LocalAPI HTTP server (Go
/// `tsnet.Server.LocalClient()` → `*local.Client`), obtained from [`Server::local_client`].
///
/// It authenticates every request with the loopback's LocalAPI credential and speaks plain HTTP to
/// `127.0.0.1`. LocalAPI responses are JSON/text, decoded here as UTF-8 `str`.
const RAW_DOC: &'static CStr = /// A minimal client for this node's in-process LocalAPI HTTP server (Go /// `tsnet.Server.LocalClient()` → `*local.Client`), obtained from [`Server::local_client`]. /// /// It authenticates every request with the loopback's LocalAPI credential and speaks plain HTTP to /// `127.0.0.1`. LocalAPI responses are JSON/text, decoded here as UTF-8 `str`.
Source§const DOC: &'static CStr
const DOC: &'static CStr
text_signature if a constructor is defined. Read moreSource§type Layout = <<LocalClient as PyClassImpl>::BaseNativeType as PyClassBaseType>::Layout<LocalClient>
type Layout = <<LocalClient as PyClassImpl>::BaseNativeType as PyClassBaseType>::Layout<LocalClient>
Source§type ThreadChecker = NoopThreadChecker
type ThreadChecker = NoopThreadChecker
Source§type PyClassMutability = <<PyAny as PyClassBaseType>::PyClassMutability as PyClassMutability>::ImmutableChild
type PyClassMutability = <<PyAny as PyClassBaseType>::PyClassMutability as PyClassMutability>::ImmutableChild
Source§type BaseNativeType = PyAny
type BaseNativeType = PyAny
PyAny by default, and when you declare
#[pyclass(extends=PyDict)], it’s PyDict.fn items_iter() -> PyClassItemsIter
fn lazy_type_object() -> &'static LazyTypeObject<Self>
Source§fn dict_offset() -> Option<PyObjectOffset>
fn dict_offset() -> Option<PyObjectOffset>
Source§fn weaklist_offset() -> Option<PyObjectOffset>
fn weaklist_offset() -> Option<PyObjectOffset>
Source§impl PyMethods<LocalClient> for PyClassImplCollector<LocalClient>
impl PyMethods<LocalClient> for PyClassImplCollector<LocalClient>
fn py_methods(self) -> &'static PyClassItems
Source§impl PyTypeInfo for LocalClient
impl PyTypeInfo for LocalClient
Source§const NAME: &str = <Self as ::pyo3::PyClass>::NAME
const NAME: &str = <Self as ::pyo3::PyClass>::NAME
prefer using ::type_object(py).name() to get the correct runtime value
Source§const MODULE: Option<&str> = <Self as ::pyo3::impl_::pyclass::PyClassImpl>::MODULE
const MODULE: Option<&str> = <Self as ::pyo3::impl_::pyclass::PyClassImpl>::MODULE
prefer using ::type_object(py).module() to get the correct runtime value
Source§fn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
fn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
Source§fn type_object(py: Python<'_>) -> Bound<'_, PyType>
fn type_object(py: Python<'_>) -> Bound<'_, PyType>
Auto Trait Implementations§
impl Freeze for LocalClient
impl RefUnwindSafe for LocalClient
impl Send for LocalClient
impl Sync for LocalClient
impl Unpin for LocalClient
impl UnsafeUnpin for LocalClient
impl UnwindSafe for LocalClient
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<A, T> DynMessage<A> for T
impl<A, T> DynMessage<A> for T
Source§fn handle_dyn<'a>(
self: Box<T>,
state: &'a mut A,
actor_ref: ActorRef<A>,
tx: Option<Sender<Result<Box<dyn Any + Send>, SendError<Box<dyn Any + Send>, Box<dyn Any + Send>>>>>,
stop: &'a mut bool,
) -> Pin<Box<dyn Future<Output = Result<(), Box<dyn ReplyError>>> + Send + 'a>>
fn handle_dyn<'a>( self: Box<T>, state: &'a mut A, actor_ref: ActorRef<A>, tx: Option<Sender<Result<Box<dyn Any + Send>, SendError<Box<dyn Any + Send>, Box<dyn Any + Send>>>>>, stop: &'a mut bool, ) -> Pin<Box<dyn Future<Output = Result<(), Box<dyn ReplyError>>> + Send + 'a>>
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<'py, T> IntoPyObjectExt<'py> for Twhere
T: IntoPyObject<'py>,
impl<'py, T> IntoPyObjectExt<'py> for Twhere
T: IntoPyObject<'py>,
Source§fn into_bound_py_any(self, py: Python<'py>) -> Result<Bound<'py, PyAny>, PyErr>
fn into_bound_py_any(self, py: Python<'py>) -> Result<Bound<'py, PyAny>, PyErr>
self into an owned Python object, dropping type information.