pub struct NetAcceptEntity {
pub addr: String,
}Fields§
§addr: StringEndpoint address string (for example 127.0.0.1:8080).
Trait Implementations§
Source§impl EntityBodySlot for NetAcceptEntity
impl EntityBodySlot for NetAcceptEntity
const KIND_NAME: &'static str = "NetAccept"
type Value = NetAcceptEntity
fn project(body: &EntityBody) -> Option<&Self::Value>
fn project_mut(body: &mut EntityBody) -> Option<&mut Self::Value>
Source§impl<'ʄ> Facet<'ʄ> for NetAcceptEntity
impl<'ʄ> Facet<'ʄ> for NetAcceptEntity
Source§impl From<NetAcceptEntity> for EntityBody
impl From<NetAcceptEntity> for EntityBody
Source§fn from(value: NetAcceptEntity) -> Self
fn from(value: NetAcceptEntity) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for NetAcceptEntity
impl RefUnwindSafe for NetAcceptEntity
impl Send for NetAcceptEntity
impl Sync for NetAcceptEntity
impl Unpin for NetAcceptEntity
impl UnsafeUnpin for NetAcceptEntity
impl UnwindSafe for NetAcceptEntity
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