pub struct UpdateKnowledgebase {
pub name: Option<String>,
pub description: Option<String>,
}Expand description
UpdateKnowledgebase : Данные для обновления базы знаний
Fields§
§name: Option<String>Название базы знаний
description: Option<String>Описание базы знаний
Implementations§
Source§impl UpdateKnowledgebase
impl UpdateKnowledgebase
Sourcepub fn new() -> UpdateKnowledgebase
pub fn new() -> UpdateKnowledgebase
Данные для обновления базы знаний
Trait Implementations§
Source§impl Clone for UpdateKnowledgebase
impl Clone for UpdateKnowledgebase
Source§fn clone(&self) -> UpdateKnowledgebase
fn clone(&self) -> UpdateKnowledgebase
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 UpdateKnowledgebase
impl Debug for UpdateKnowledgebase
Source§impl Default for UpdateKnowledgebase
impl Default for UpdateKnowledgebase
Source§fn default() -> UpdateKnowledgebase
fn default() -> UpdateKnowledgebase
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateKnowledgebase
impl<'de> Deserialize<'de> for UpdateKnowledgebase
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UpdateKnowledgebase
impl PartialEq for UpdateKnowledgebase
Source§fn eq(&self, other: &UpdateKnowledgebase) -> bool
fn eq(&self, other: &UpdateKnowledgebase) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UpdateKnowledgebase
impl Serialize for UpdateKnowledgebase
impl StructuralPartialEq for UpdateKnowledgebase
Auto Trait Implementations§
impl Freeze for UpdateKnowledgebase
impl RefUnwindSafe for UpdateKnowledgebase
impl Send for UpdateKnowledgebase
impl Sync for UpdateKnowledgebase
impl Unpin for UpdateKnowledgebase
impl UnsafeUnpin for UpdateKnowledgebase
impl UnwindSafe for UpdateKnowledgebase
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