@@ -11,9 +11,9 @@ const Stream_Device = @This();
11
11
12
12
/// Pointer to the object implementing the driver.
13
13
///
14
- /// If the implementation requires no `object ` pointer,
14
+ /// If the implementation requires no `ptr ` pointer,
15
15
/// you can safely use `undefined` here.
16
- object : * anyopaque ,
16
+ ptr : * anyopaque ,
17
17
18
18
/// Virtual table for the stream device functions.
19
19
vtable : * const VTable ,
@@ -28,13 +28,13 @@ pub const ReadError = BaseError || error{ Unsupported, NotConnected };
28
28
/// NOTE: Call `.disconnect()` when the usage of the device is done to release it.
29
29
pub fn connect (sd : Stream_Device ) ConnectError ! void {
30
30
const connect_fn = sd .vtable .connect_fn orelse return ;
31
- return connect_fn (sd .object );
31
+ return connect_fn (sd .ptr );
32
32
}
33
33
34
34
/// Releases a device from the connection.
35
35
pub fn disconnect (sd : Stream_Device ) void {
36
36
const disconnect_fn = sd .vtable .disconnect_fn orelse return ;
37
- return disconnect_fn (sd .object );
37
+ return disconnect_fn (sd .ptr );
38
38
}
39
39
40
40
/// Writes some `bytes` to the device and returns the number of bytes written.
@@ -45,7 +45,7 @@ pub fn write(sd: Stream_Device, bytes: []const u8) WriteError!usize {
45
45
/// Writes some `bytes` to the device and returns the number of bytes written.
46
46
pub fn writev (sd : Stream_Device , bytes_vec : []const []const u8 ) WriteError ! usize {
47
47
const writev_fn = sd .vtable .writev_fn orelse return error .Unsupported ;
48
- return writev_fn (sd .object , bytes_vec );
48
+ return writev_fn (sd .ptr , bytes_vec );
49
49
}
50
50
51
51
/// Reads some `bytes` to the device and returns the number of bytes read.
@@ -56,7 +56,7 @@ pub fn read(sd: Stream_Device, bytes: []u8) ReadError!usize {
56
56
/// Reads some `bytes` to the device and returns the number of bytes read.
57
57
pub fn readv (sd : Stream_Device , bytes_vec : []const []u8 ) ReadError ! usize {
58
58
const readv_fn = sd .vtable .readv_fn orelse return error .Unsupported ;
59
- return readv_fn (sd .object , bytes_vec );
59
+ return readv_fn (sd .ptr , bytes_vec );
60
60
}
61
61
62
62
pub const Reader = std .io .Reader (Stream_Device , ReadError , reader_read );
@@ -118,7 +118,7 @@ pub const Test_Device = struct {
118
118
119
119
pub fn stream_device (td : * Test_Device ) Stream_Device {
120
120
return Stream_Device {
121
- .object = td ,
121
+ .ptr = td ,
122
122
.vtable = & vtable ,
123
123
};
124
124
}
0 commit comments