You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// (), // A null value in a single-level partition key.
@@ -80,11 +71,8 @@ impl<T: Into<PartitionKey>> From<T> for QueryPartitionStrategy {
80
71
/// Or, if you have an [`Option<T>`], for some `T` that is valid as a partition key, it will automatically be serialized as `null` if it has the value [`Option::None`]:
81
72
///
82
73
/// ```rust,no_run
83
-
/// # use azure_data_cosmos::{CosmosClient, CosmosClientMethods, clients::DatabaseClientMethods, clients::ContainerClientMethods};
84
-
/// # let credential = azure_identity::create_default_credential().unwrap();
85
-
/// # let client = CosmosClient::new("https://myaccount.documents.azure.com/", credential, None).unwrap();
86
-
/// # let db_client = client.database_client("my_database");
87
-
/// # let container_client = db_client.container_client("my_container");
74
+
/// # use azure_data_cosmos::clients::{ContainerClient, ContainerClientMethods};
75
+
/// # let container_client: ContainerClient = todo!("this is a non-running example");
0 commit comments