pub struct VersionedNotebookDocumentIdentifier {
pub version: i32,
pub uri: Uri,
}
Expand description
A versioned notebook document identifier.
@since 3.17.0
Fields§
§version: i32
The version number of this notebook document.
uri: Uri
The notebook document’s URI.
Trait Implementations§
Source§impl Clone for VersionedNotebookDocumentIdentifier
impl Clone for VersionedNotebookDocumentIdentifier
Source§fn clone(&self) -> VersionedNotebookDocumentIdentifier
fn clone(&self) -> VersionedNotebookDocumentIdentifier
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for VersionedNotebookDocumentIdentifier
impl<'de> Deserialize<'de> for VersionedNotebookDocumentIdentifier
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<VersionedNotebookDocumentIdentifier, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<VersionedNotebookDocumentIdentifier, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for VersionedNotebookDocumentIdentifier
impl PartialEq for VersionedNotebookDocumentIdentifier
Source§fn eq(&self, other: &VersionedNotebookDocumentIdentifier) -> bool
fn eq(&self, other: &VersionedNotebookDocumentIdentifier) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for VersionedNotebookDocumentIdentifier
impl Serialize for VersionedNotebookDocumentIdentifier
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for VersionedNotebookDocumentIdentifier
impl StructuralPartialEq for VersionedNotebookDocumentIdentifier
Auto Trait Implementations§
impl !Freeze for VersionedNotebookDocumentIdentifier
impl !RefUnwindSafe for VersionedNotebookDocumentIdentifier
impl Send for VersionedNotebookDocumentIdentifier
impl Sync for VersionedNotebookDocumentIdentifier
impl Unpin for VersionedNotebookDocumentIdentifier
impl UnwindSafe for VersionedNotebookDocumentIdentifier
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