pub(crate) struct ProxyInnerStatic {
pub(crate) conn: Connection,
dest_owner_change_match_rule: OnceLock<OwnedMatchRule>,
}Expand description
This is required to avoid having the Drop impl extend the lifetime ’a, which breaks zbus_xmlgen (and possibly other crates).
Fields§
§conn: Connection§dest_owner_change_match_rule: OnceLock<OwnedMatchRule>Trait Implementations§
Source§impl Debug for ProxyInnerStatic
impl Debug for ProxyInnerStatic
Auto Trait Implementations§
impl !Freeze for ProxyInnerStatic
impl !RefUnwindSafe for ProxyInnerStatic
impl Send for ProxyInnerStatic
impl Sync for ProxyInnerStatic
impl Unpin for ProxyInnerStatic
impl !UnwindSafe for ProxyInnerStatic
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