-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WORKFLOW] Updating protos from viamrobotics/api, commit: baba107de63…
…7a07365bbabf37dc58579210741cc
- Loading branch information
Showing
46 changed files
with
8,798 additions
and
896 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// @generated | ||
/// ListStreamsRequest requests all streams registered. | ||
#[allow(clippy::derive_partial_eq_without_eq)] | ||
#[derive(Clone, PartialEq, ::prost::Message)] | ||
pub struct ListStreamsRequest { | ||
} | ||
/// A ListStreamsResponse details streams registered. | ||
#[allow(clippy::derive_partial_eq_without_eq)] | ||
#[derive(Clone, PartialEq, ::prost::Message)] | ||
pub struct ListStreamsResponse { | ||
#[prost(string, repeated, tag="1")] | ||
pub names: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, | ||
} | ||
/// A AddStreamRequest requests the given stream be added to the connection. | ||
#[allow(clippy::derive_partial_eq_without_eq)] | ||
#[derive(Clone, PartialEq, ::prost::Message)] | ||
pub struct AddStreamRequest { | ||
#[prost(string, tag="1")] | ||
pub name: ::prost::alloc::string::String, | ||
} | ||
/// AddStreamResponse is returned after a successful AddStreamRequest. | ||
#[allow(clippy::derive_partial_eq_without_eq)] | ||
#[derive(Clone, PartialEq, ::prost::Message)] | ||
pub struct AddStreamResponse { | ||
} | ||
/// A RemoveStreamRequest requests the given stream be removed from the connection. | ||
#[allow(clippy::derive_partial_eq_without_eq)] | ||
#[derive(Clone, PartialEq, ::prost::Message)] | ||
pub struct RemoveStreamRequest { | ||
#[prost(string, tag="1")] | ||
pub name: ::prost::alloc::string::String, | ||
} | ||
/// RemoveStreamResponse is returned after a successful RemoveStreamRequest. | ||
#[allow(clippy::derive_partial_eq_without_eq)] | ||
#[derive(Clone, PartialEq, ::prost::Message)] | ||
pub struct RemoveStreamResponse { | ||
} | ||
// @@protoc_insertion_point(module) |
Oops, something went wrong.