pub struct DangerousMethodsProxy { /* private fields */ }
Implementations§
source§impl DangerousMethodsProxy
impl DangerousMethodsProxy
sourcepub fn take_event_stream(&self) -> DangerousMethodsEventStream
pub fn take_event_stream(&self) -> DangerousMethodsEventStream
Get a Stream of events from the remote end of the DangerousMethods protocol
Panics
Panics if the event stream was already taken.
pub fn alignof_(&self) -> Result<(), Error>
pub fn asm(&self) -> Result<(), Error>
pub fn atomic_commit(&self) -> Result<(), Error>
pub fn catch(&self) -> Result<(), Error>
pub fn char32_t(&self) -> Result<(), Error>
pub fn co_return(&self) -> Result<(), Error>
pub fn concept(&self) -> Result<(), Error>
pub fn default(&self) -> Result<(), Error>
pub fn export(&self) -> Result<(), Error>
pub fn factory(&self) -> Result<(), Error>
pub fn future(&self) -> Result<(), Error>
pub fn goto(&self) -> Result<(), Error>
pub fn header(&self) -> Result<(), Error>
pub fn import(&self) -> Result<(), Error>
pub fn int(&self) -> Result<(), Error>
pub fn int8(&self) -> Result<(), Error>
pub fn long(&self) -> Result<(), Error>
pub fn never(&self) -> Result<(), Error>
pub fn none(&self) -> Result<(), Error>
pub fn nullptr(&self) -> Result<(), Error>
pub fn offsetof_(&self) -> Result<(), Error>
pub fn option(&self) -> Result<(), Error>
pub fn package(&self) -> Result<(), Error>
pub fn proc_(&self) -> Result<(), Error>
pub fn public(&self) -> Result<(), Error>
pub fn register(&self) -> Result<(), Error>
pub fn rune(&self) -> Result<(), Error>
pub fn send(&self) -> Result<(), Error>
pub fn signed(&self) -> Result<(), Error>
pub fn static_assert(&self) -> Result<(), Error>
pub fn stdout(&self) -> Result<(), Error>
pub fn template(&self) -> Result<(), Error>
pub fn to_string(&self) -> Result<(), Error>
pub fn typedef(&self) -> Result<(), Error>
pub fn uint16(&self) -> Result<(), Error>
pub fn union(&self) -> Result<(), Error>
pub fn using(&self) -> Result<(), Error>
pub fn values_map(&self) -> Result<(), Error>
pub fn void(&self) -> Result<(), Error>
pub fn which(&self) -> Result<(), Error>
pub fn xor_eq(&self) -> Result<(), Error>
Trait Implementations§
source§impl Clone for DangerousMethodsProxy
impl Clone for DangerousMethodsProxy
source§fn clone(&self) -> DangerousMethodsProxy
fn clone(&self) -> DangerousMethodsProxy
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl DangerousMethodsProxyInterface for DangerousMethodsProxy
impl DangerousMethodsProxyInterface for DangerousMethodsProxy
fn alignof_(&self) -> Result<(), Error>
fn asm(&self) -> Result<(), Error>
fn atomic_commit(&self) -> Result<(), Error>
fn catch(&self) -> Result<(), Error>
fn char32_t(&self) -> Result<(), Error>
fn co_return(&self) -> Result<(), Error>
fn concept(&self) -> Result<(), Error>
fn default(&self) -> Result<(), Error>
fn export(&self) -> Result<(), Error>
fn factory(&self) -> Result<(), Error>
fn future(&self) -> Result<(), Error>
fn goto(&self) -> Result<(), Error>
fn header(&self) -> Result<(), Error>
fn import(&self) -> Result<(), Error>
fn int(&self) -> Result<(), Error>
fn int8(&self) -> Result<(), Error>
fn long(&self) -> Result<(), Error>
fn never(&self) -> Result<(), Error>
fn none(&self) -> Result<(), Error>
fn nullptr(&self) -> Result<(), Error>
fn offsetof_(&self) -> Result<(), Error>
fn option(&self) -> Result<(), Error>
fn package(&self) -> Result<(), Error>
fn proc_(&self) -> Result<(), Error>
fn public(&self) -> Result<(), Error>
fn register(&self) -> Result<(), Error>
fn rune(&self) -> Result<(), Error>
fn send(&self) -> Result<(), Error>
fn signed(&self) -> Result<(), Error>
fn static_assert(&self) -> Result<(), Error>
fn stdout(&self) -> Result<(), Error>
fn template(&self) -> Result<(), Error>
fn to_string(&self) -> Result<(), Error>
fn typedef(&self) -> Result<(), Error>
fn uint16(&self) -> Result<(), Error>
fn union(&self) -> Result<(), Error>
fn using(&self) -> Result<(), Error>
fn values_map(&self) -> Result<(), Error>
fn void(&self) -> Result<(), Error>
fn which(&self) -> Result<(), Error>
fn xor_eq(&self) -> Result<(), Error>
source§impl Debug for DangerousMethodsProxy
impl Debug for DangerousMethodsProxy
source§impl Proxy for DangerousMethodsProxy
impl Proxy for DangerousMethodsProxy
§type Protocol = DangerousMethodsMarker
type Protocol = DangerousMethodsMarker
The protocol which this
Proxy
controls.source§fn from_channel(inner: AsyncChannel) -> Self
fn from_channel(inner: AsyncChannel) -> Self
Create a proxy over the given channel.
source§fn into_channel(self) -> Result<AsyncChannel, Self>
fn into_channel(self) -> Result<AsyncChannel, Self>
Attempt to convert the proxy back into a channel. Read more
source§fn as_channel(&self) -> &AsyncChannel
fn as_channel(&self) -> &AsyncChannel
Get a reference to the proxy’s underlying channel. Read more