pub struct AssistantSessionIdError {
pub text: String,
}Expand description
A session identifier that could not be parsed from its textual form.
Fields§
§text: StringThe text that was offered as a session id.
Trait Implementations§
Source§impl Clone for AssistantSessionIdError
impl Clone for AssistantSessionIdError
Source§fn clone(&self) -> AssistantSessionIdError
fn clone(&self) -> AssistantSessionIdError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AssistantSessionIdError
impl Debug for AssistantSessionIdError
Source§impl Display for AssistantSessionIdError
impl Display for AssistantSessionIdError
impl Eq for AssistantSessionIdError
Source§impl Error for AssistantSessionIdError
impl Error for AssistantSessionIdError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for AssistantSessionIdError
impl PartialEq for AssistantSessionIdError
impl StructuralPartialEq for AssistantSessionIdError
Auto Trait Implementations§
impl Freeze for AssistantSessionIdError
impl RefUnwindSafe for AssistantSessionIdError
impl Send for AssistantSessionIdError
impl Sync for AssistantSessionIdError
impl Unpin for AssistantSessionIdError
impl UnsafeUnpin for AssistantSessionIdError
impl UnwindSafe for AssistantSessionIdError
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