Fix some links to private elements

This commit is contained in:
Dominik Nakamura 2020-12-29 21:49:02 +09:00
parent ed7d411524
commit a007f3dc1c
No known key found for this signature in database
GPG key ID: E4C6A749B2491910
3 changed files with 2 additions and 5 deletions

View file

@ -25,7 +25,6 @@ obws = "0.1.0"
In addition, you will need to use the [tokio](https://tokio.rs) runtime (currently `v0.3.x`), to In addition, you will need to use the [tokio](https://tokio.rs) runtime (currently `v0.3.x`), to
use this library as it makes heavy use of async/await and is bound to this runtime. use this library as it makes heavy use of async/await and is bound to this runtime.
[cargo-edit]: https://github.com/killercup/cargo-edit [cargo-edit]: https://github.com/killercup/cargo-edit
### Example ### Example
@ -57,7 +56,6 @@ async fn main() -> Result<()> {
Ok(()) Ok(())
} }
``` ```
## License ## License

View file

@ -833,8 +833,7 @@ pub struct Bounds {
} }
/// Request information for /// Request information for
/// [`reorder_scene_items`](crate::client::Scenes::reorder_scene_items) as part of /// [`reorder_scene_items`](crate::client::Scenes::reorder_scene_items).
/// [`ReorderLineItems`](RequestType::ReorderSceneItems).
#[skip_serializing_none] #[skip_serializing_none]
#[derive(Debug, Default, Serialize)] #[derive(Debug, Default, Serialize)]
pub struct Scene<'a> { pub struct Scene<'a> {

View file

@ -48,7 +48,7 @@ pub struct Version {
#[serde(deserialize_with = "de::string_comma_list")] #[serde(deserialize_with = "de::string_comma_list")]
pub available_requests: HashSet<String>, pub available_requests: HashSet<String>,
/// List of supported formats for features that use image export (like the /// List of supported formats for features that use image export (like the
/// [`TakeSourceScreenshot`](crate::requests::RequestType::TakeSourceScreenshot) request type) /// [`take_source_screenshot`](crate::client::Sources::take_source_screenshot) request)
/// formatted as a comma-separated list string. /// formatted as a comma-separated list string.
#[serde(deserialize_with = "de::string_comma_list")] #[serde(deserialize_with = "de::string_comma_list")]
pub supported_image_export_formats: HashSet<String>, pub supported_image_export_formats: HashSet<String>,