use super::{Command, Response};
use {Adapter, CommandType, ObjectId, ObjectType, SequenceId, Session, SessionError};
pub fn list_objects<A: Adapter>(
session: &mut Session<A>,
) -> Result<Vec<ListObjectsEntry>, SessionError> {
session
.send_command(ListObjectsCommand {})
.map(|response| response.0)
}
#[derive(Serialize, Deserialize, Debug)]
pub(crate) struct ListObjectsCommand {}
impl Command for ListObjectsCommand {
type ResponseType = ListObjectsResponse;
}
#[derive(Serialize, Deserialize, Debug)]
pub(crate) struct ListObjectsResponse(pub(crate) Vec<ListObjectsEntry>);
impl Response for ListObjectsResponse {
const COMMAND_TYPE: CommandType = CommandType::ListObjects;
}
#[derive(Serialize, Deserialize, Debug)]
pub struct ListObjectsEntry {
pub object_id: ObjectId,
pub object_type: ObjectType,
pub sequence: SequenceId,
}