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