pub struct ConnectionPointInType {
pub global_id: Option<String>,
pub content: Vec<ConnectionPointInTypeContent>,
}Expand description
Defines a connection point on the consumer side
Fields§
§global_id: Option<String>§content: Vec<ConnectionPointInTypeContent>Trait Implementations§
Source§impl Debug for ConnectionPointInType
impl Debug for ConnectionPointInType
Source§impl<'de> Deserializer<'de, ConnectionPointInType> for Box<ConnectionPointInTypeDeserializer>
impl<'de> Deserializer<'de, ConnectionPointInType> for Box<ConnectionPointInTypeDeserializer>
Source§fn init<R>(
reader: &R,
event: Event<'de>,
) -> DeserializerResult<'de, ConnectionPointInType>where
R: DeserializeReader,
fn init<R>(
reader: &R,
event: Event<'de>,
) -> DeserializerResult<'de, ConnectionPointInType>where
R: DeserializeReader,
Source§fn next<R>(
self,
reader: &R,
event: Event<'de>,
) -> DeserializerResult<'de, ConnectionPointInType>where
R: DeserializeReader,
fn next<R>(
self,
reader: &R,
event: Event<'de>,
) -> DeserializerResult<'de, ConnectionPointInType>where
R: DeserializeReader,
Source§fn finish<R>(self, reader: &R) -> Result<ConnectionPointInType, Error>where
R: DeserializeReader,
fn finish<R>(self, reader: &R) -> Result<ConnectionPointInType, Error>where
R: DeserializeReader,
Force the deserializer to finish. Read more
Source§impl WithDeserializer for ConnectionPointInType
impl WithDeserializer for ConnectionPointInType
Source§type Deserializer = Box<ConnectionPointInTypeDeserializer>
type Deserializer = Box<ConnectionPointInTypeDeserializer>
The deserializer to use for this type.
Source§impl WithSerializer for ConnectionPointInType
impl WithSerializer for ConnectionPointInType
Source§type Serializer<'x> = ConnectionPointInTypeSerializer<'x>
type Serializer<'x> = ConnectionPointInTypeSerializer<'x>
The serializer to use for this type.
Source§fn serializer<'ser>(
&'ser self,
name: Option<&'ser str>,
is_root: bool,
) -> Result<Self::Serializer<'ser>, Error>
fn serializer<'ser>( &'ser self, name: Option<&'ser str>, is_root: bool, ) -> Result<Self::Serializer<'ser>, Error>
Initializes a new serializer from the passed
value. Read moreAuto Trait Implementations§
impl Freeze for ConnectionPointInType
impl RefUnwindSafe for ConnectionPointInType
impl Send for ConnectionPointInType
impl Sync for ConnectionPointInType
impl Unpin for ConnectionPointInType
impl UnwindSafe for ConnectionPointInType
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